]> www.ginac.de Git - cln.git/blobdiff - src/float/conv/cl_F_from_I.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / conv / cl_F_from_I.cc
index 2e2ffcfc52d16f2abc2f2d552f3201246bfa7e7a..7eee5264f767d9c8d539f397d88884b1e9588cb8 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_float.h"
+#include "cln/float.h"
 
 
 // Implementation.
@@ -15,6 +15,8 @@
 #include "cl_DF.h"
 #include "cl_LF.h"
 
+namespace cln {
+
 const cl_F cl_float (const cl_I& x, const cl_F& y)
 {
        floattypecase(y
@@ -24,3 +26,5 @@ const cl_F cl_float (const cl_I& x, const cl_F& y)
        ,       return cl_I_to_LF(x,TheLfloat(y)->len);
        );
 }
+
+}  // namespace cln