X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Felem%2Fcl_F_plusp.cc;h=d76d2a5a96088fd43565f88849e165d5b9cecf4d;hb=8b3d91dec77438c0fe679b10869ab29e6cdeba58;hp=e091a0bf2e072cabdfa201e6da6b5a1e87df1582;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/float/elem/cl_F_plusp.cc b/src/float/elem/cl_F_plusp.cc index e091a0b..d76d2a5 100644 --- a/src/float/elem/cl_F_plusp.cc +++ b/src/float/elem/cl_F_plusp.cc @@ -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