]> www.ginac.de Git - cln.git/blobdiff - src/base/string/cl_st_c2.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / base / string / cl_st_c2.cc
index 163e66b878b9dbdbaa99ab28ad72770391bff0c8..0adc918afeade411ad805dd385f4c349c6f8b7a4 100644 (file)
@@ -4,14 +4,18 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_string.h"
+#include "cln/string.h"
 
 
 // Implementation.
 
+namespace cln {
+
 extern cl_heap_string* cl_make_heap_string (const char * ptr, unsigned long len);
 
 cl_string::cl_string (const char * ptr, unsigned long len)
 {
        pointer = cl_make_heap_string(ptr,len);
 }
+
+}  // namespace cln