]> www.ginac.de Git - cln.git/blobdiff - src/float/division/cl_F_trunc2.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / float / division / cl_F_trunc2.cc
index e1dd711b41839e40e952eaf449db0227b4dd5c87..9c4c3cd2ed773fad2db8b34b44a12c420269d128 100644 (file)
@@ -4,21 +4,23 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_float.h"
+#include "cln/float.h"
 
 
 // Implementation.
 
 #include "cl_F.h"
-#include "cl_sfloat.h"
-#include "cl_ffloat.h"
-#include "cl_dfloat.h"
-#include "cl_lfloat.h"
+#include "cln/sfloat.h"
+#include "cln/ffloat.h"
+#include "cln/dfloat.h"
+#include "cln/lfloat.h"
 #include "cl_SF.h"
 #include "cl_FF.h"
 #include "cl_DF.h"
 #include "cl_LF.h"
 
+namespace cln {
+
 const cl_F_div_t truncate2 (const cl_F& x)
 {
        floatcase(x
@@ -28,3 +30,5 @@ const cl_F_div_t truncate2 (const cl_F& x)
        ,       var cl_LF q = ftruncate(x); return cl_F_div_t(cl_LF_to_I(q),LF_LF_minus_LF(x,q));
        );
 }
+
+}  // namespace cln