]> www.ginac.de Git - cln.git/blobdiff - src/float/division/cl_F_floor22.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / float / division / cl_F_floor22.cc
index c19980e133eaa5a77b50c289f79c6293d23f1987..7d498acd3d977b8b93386266116524ece8f6a1b3 100644 (file)
@@ -4,13 +4,15 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_float.h"
+#include "cln/float.h"
 
 
 // Implementation.
 
 #include "cl_F.h"
 
+namespace cln {
+
 const cl_F_div_t floor2 (const cl_F& x, const cl_F& y)
 {
 // Methode:
@@ -20,3 +22,5 @@ const cl_F_div_t floor2 (const cl_F& x, const cl_F& y)
        var cl_F& r = q_r.remainder;
        return cl_F_div_t(q,y*r);
 }
+
+}  // namespace cln