]> www.ginac.de Git - cln.git/blobdiff - src/float/dfloat/input/cl_DF_from_string.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / float / dfloat / input / cl_DF_from_string.cc
index 071a421054b25ab7f0463adc2ad3692221fd6e9b..c1069d2482224d9a09d89a0f4388e2f349784703 100644 (file)
@@ -4,20 +4,22 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_dfloat_class.h"
+#include "cln/dfloat_class.h"
 
 
 // Implementation.
 
-#include "cl_dfloat.h"
-#include "cl_input.h"
-#include "cl_float_io.h"
+#include "cln/dfloat.h"
+#include "cln/input.h"
+#include "cln/float_io.h"
+
+namespace cln {
 
 cl_read_flags cl_DF_read_flags = {
        syntax_dfloat,
        lsyntax_all,
        10,
-       { cl_float_format_dfloat, cl_float_format_lfloat_min, cl_false }
+       { float_format_dfloat, float_format_lfloat_min, false }
 };
 
 cl_DF::cl_DF (const char * string)
@@ -25,3 +27,5 @@ cl_DF::cl_DF (const char * string)
        pointer = as_cl_private_thing(
                As(cl_DF)(read_float(cl_DF_read_flags,string,NULL,NULL)));
 }
+
+}  // namespace cln