lib/cpp: move up `to_cpp_string` to `Text`
authorAlexis Laferrière <alexis.laf@xymus.net>
Wed, 26 Nov 2014 16:45:31 +0000 (11:45 -0500)
committerAlexis Laferrière <alexis.laf@xymus.net>
Thu, 27 Nov 2014 15:12:33 +0000 (10:12 -0500)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/cpp.nit

index 3d4daf6..4eeb2a5 100644 (file)
@@ -23,7 +23,7 @@ end
 extern class CppString in "C++" `{ std::string* `}
 end
 
-redef class String
+redef class Text
        fun to_cpp_string: CppString do return to_cstring.to_cpp_string
 end