]> www.ginac.de Git - cln.git/blobdiff - src/float/elem/cl_F_plusp.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / float / elem / cl_F_plusp.cc
index e091a0bf2e072cabdfa201e6da6b5a1e87df1582..d76d2a5a96088fd43565f88849e165d5b9cecf4d 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_float.h"
+#include "cln/float.h"
 
 
 // Implementation.
@@ -18,7 +18,9 @@
 #include "cl_DF_plusp.cc"
 #include "cl_LF_plusp.cc"
 
-cl_boolean plusp (const cl_F& x)
+namespace cln {
+
+bool plusp (const cl_F& x)
 {
        floatcase(x
        ,       return plusp(x);
@@ -27,3 +29,5 @@ cl_boolean plusp (const cl_F& x)
        ,       return plusp(x);
        );
 }
+
+}  // namespace cln