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=aa922661f62849111d7e390849df0abf658cc37e;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/float/sfloat/misc/cl_SF_digits.cc b/src/float/sfloat/misc/cl_SF_digits.cc index aa92266..e4ea7db 100644 --- a/src/float/sfloat/misc/cl_SF_digits.cc +++ b/src/float/sfloat/misc/cl_SF_digits.cc @@ -1,19 +1,22 @@ // float_digits(). // General includes. -#include "cl_sysdep.h" +#include "base/cl_sysdep.h" // Specification. -#include "cl_sfloat.h" +#include "cln/sfloat.h" // Implementation. -#include "cl_SF.h" +#include "float/sfloat/cl_SF.h" -MAYBE_INLINE -uintL float_digits (const cl_SF& x) +namespace cln { + +CL_INLINE uintC CL_INLINE_DECL(float_digits) (const cl_SF& x) { - unused x; + cl_unused x; return SF_mant_len+1; // 17 } + +} // namespace cln