]> www.ginac.de Git - cln.git/blob - src/float/lfloat/misc/cl_LF_digits.cc
Fix linking problems on some platforms caused by inline/non-inline versions
[cln.git] / src / float / lfloat / misc / cl_LF_digits.cc
1 // float_digits().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/lfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_LF.h"
13
14 namespace cln {
15
16 CL_INLINE uintC CL_INLINE_DECL(float_digits) (const cl_LF& x)
17 {
18         return intDsize*(uintC)(TheLfloat(x)->len);
19 }
20
21 }  // namespace cln