]> www.ginac.de Git - cln.git/blobdiff - src/float/ffloat/misc/cl_FF_debug.cc
Finalize CLN 1.3.7 release.
[cln.git] / src / float / ffloat / misc / cl_FF_debug.cc
index 60998acf9a34dcb4f46444ad290c04ed72a7e667..ebfdc8ddb3da691281789861ae7f6363b7803562 100644 (file)
@@ -1,16 +1,18 @@
 // cl_FF debugging support.
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
 
 
 // Implementation.
 
-#include "cl_ffloat.h"
-#include "cl_io.h"
-#include "cl_float_io.h"
+#include "cln/ffloat.h"
+#include "cln/io.h"
+#include "cln/float_io.h"
+
+namespace cln {
 
 static void dprint (cl_heap* pointer)
 {
@@ -21,5 +23,7 @@ static void dprint (cl_heap* pointer)
 AT_INITIALIZATION(dprint_FF)
 { cl_register_type_printer(cl_class_ffloat,dprint); }
 
-// This dummy links in this module when <cl_ffloat.h> requires it.
+// This dummy links in this module when <cln/ffloat.h> requires it.
 int cl_FF_debug_module;
+
+}  // namespace cln