]> www.ginac.de Git - cln.git/blobdiff - src/base/string/cl_st_concat1.cc
Add index entry for 'cast'.
[cln.git] / src / base / string / cl_st_concat1.cc
index 56ea0699801991e2f325a64ec4736289bce3592f..44d0e6d5dd2e33029cf02fe46a566a3a76a7bf5a 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_string.h"
+#include "cln/string.h"
 
 
 // Implementation.
@@ -13,6 +13,8 @@
 #define MAYBE_INLINE inline
 #include "cl_st_make0.cc"
 
+namespace cln {
+
 const cl_string operator+ (const cl_string& str1, const cl_string& str2)
 {
     unsigned long len1 = strlen(str1);
@@ -32,3 +34,5 @@ const cl_string operator+ (const cl_string& str1, const cl_string& str2)
     *ptr++ = '\0';
     return str;
 }
+
+}  // namespace cln