]> www.ginac.de Git - cln.git/blobdiff - src/float/sfloat/misc/cl_SF_digits.cc
Replace unused macro with cl_unused.
[cln.git] / src / float / sfloat / misc / cl_SF_digits.cc
index aa922661f62849111d7e390849df0abf658cc37e..e4ea7dbcb5d97aeed52a4ee1d12c956ee1302223 100644 (file)
@@ -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