]> www.ginac.de Git - cln.git/blobdiff - src/complex/misc/cl_C_class.cc
bump library version, since CLN doesn't export global object ctors any more.
[cln.git] / src / complex / misc / cl_C_class.cc
index db4290c7765423c6fea711ced3405d9a9b047041..ef5dfb6ed460fe3d25bfd5dcd1781f40dc08a02b 100644 (file)
@@ -4,13 +4,15 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_complex.h"
+#include "cln/complex.h"
 
 
 // Implementation.
 
 #include "cl_C.h"
 
+namespace cln {
+
 static void complex_destructor (cl_heap* pointer)
 {
        (*(cl_heap_complex*)pointer).~cl_heap_complex();
@@ -20,3 +22,5 @@ cl_class cl_class_complex = {
        complex_destructor,
        cl_class_flags_subclass_complex
 };
+
+}  // namespace cln