X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Fsfloat%2Fmisc%2Fcl_SF_digits.cc;h=e4ea7dbcb5d97aeed52a4ee1d12c956ee1302223;hb=3af2cde18b3aabed4c808b0113daa81c2263b0bd;hp=378a287d34e4be2862642e0dab63fe5f6bcd4801;hpb=c84c6db5d56829d69083c819688a973867694a2a;p=cln.git diff --git a/src/float/sfloat/misc/cl_SF_digits.cc b/src/float/sfloat/misc/cl_SF_digits.cc index 378a287..e4ea7db 100644 --- a/src/float/sfloat/misc/cl_SF_digits.cc +++ b/src/float/sfloat/misc/cl_SF_digits.cc @@ -1,7 +1,7 @@ // float_digits(). // General includes. -#include "cl_sysdep.h" +#include "base/cl_sysdep.h" // Specification. #include "cln/sfloat.h" @@ -9,14 +9,13 @@ // Implementation. -#include "cl_SF.h" +#include "float/sfloat/cl_SF.h" namespace cln { -MAYBE_INLINE -uintC float_digits (const cl_SF& x) +CL_INLINE uintC CL_INLINE_DECL(float_digits) (const cl_SF& x) { - unused x; + cl_unused x; return SF_mant_len+1; // 17 }