]> www.ginac.de Git - cln.git/blobdiff - src/float/conv/cl_F_to_SF.cc
* tests/Makefile.in: MinGW support for make check
[cln.git] / src / float / conv / cl_F_to_SF.cc
index 5a7a2746126dbd85b1501b54b0d4fb77476e2a81..54ae87c54cfb9f06ecabe566bd8b5e1ba6f8025b 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_SF cl_F_to_SF (const cl_F& x)
 {
        floatcase(x
@@ -20,3 +22,5 @@ const cl_SF cl_F_to_SF (const cl_F& x)
        ,       return cl_LF_to_SF(x);
        );
 }
+
+}  // namespace cln