]> www.ginac.de Git - cln.git/blobdiff - src/float/lfloat/elem/cl_LF_minusp.cc
Extend the exponent range from 32 bits to 64 bits on selected platforms.
[cln.git] / src / float / lfloat / elem / cl_LF_minusp.cc
index cb8258829de3e3e4082df3b6016fb6bb50a11ad0..882bd77da8e0953884ae84a794f485bd9faf6ea6 100644 (file)
@@ -4,15 +4,19 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_lfloat.h"
+#include "cln/lfloat.h"
 
 
 // Implementation.
 
 #include "cl_LF.h"
 
+namespace cln {
+
 MAYBE_INLINE
 cl_boolean minusp (const cl_LF& x)
 {
        return (cl_boolean) (- TheLfloat(x)->sign);
 }
+
+}  // namespace cln