]> www.ginac.de Git - cln.git/blobdiff - src/float/elem/cl_F_div.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / float / elem / cl_F_div.cc
index 74d031384160f9cbec0f3dc958c1ef331f215d67..9364774f7d2e2bb3495ea1331e44e6cce121768c 100644 (file)
@@ -4,20 +4,24 @@
 #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_LF.h"
 
+namespace cln {
+
 ALL_cl_LF_OPERATIONS_SAME_PRECISION()
 
 const cl_F operator/ (const cl_F& x, const cl_F& y)
 #define div(a,b) a/b
 GEN_F_OP2(x,y, div, 1, 1, return)
+
+}  // namespace cln