X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Fcomplex%2Fmisc%2Fcl_C_class.cc;h=ef5dfb6ed460fe3d25bfd5dcd1781f40dc08a02b;hb=478f9e32c706f314e23cc20640f8650ce5631fe5;hp=db4290c7765423c6fea711ced3405d9a9b047041;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/complex/misc/cl_C_class.cc b/src/complex/misc/cl_C_class.cc index db4290c..ef5dfb6 100644 --- a/src/complex/misc/cl_C_class.cc +++ b/src/complex/misc/cl_C_class.cc @@ -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