]> www.ginac.de Git - cln.git/blobdiff - src/float/elem/cl_F_RA_div.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / elem / cl_F_RA_div.cc
index 8ffa4e9efb94dff86a271033327ad26fb576d059..aa881caa1878dd4ad9f8a8619931013493016735 100644 (file)
@@ -4,22 +4,24 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_float.h"
+#include "cln/float.h"
 
 
 // Implementation.
 
 #include "cl_RA.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_F.h"
 #include "cl_SF.h"
 #include "cl_FF.h"
 #include "cl_DF.h"
 #include "cl_LF.h"
 
+namespace cln {
+
 const cl_F operator/ (const cl_F& x, const cl_RA& y)
 {
        floatcase(x
@@ -45,3 +47,5 @@ const cl_F operator/ (const cl_F& x, const cl_RA& y)
                                return cl_LF_RA_div(x,y);
        );
 }
+
+}  // namespace cln