sources/list.cpp

changeset 182
20ca0a6be175
parent 180
2e7225dbd9b2
child 190
90bf9049e5eb
--- a/sources/list.cpp	Wed Jan 27 13:17:11 2021 +0200
+++ b/sources/list.cpp	Wed Jan 27 14:04:53 2021 +0200
@@ -29,7 +29,6 @@
 */
 
 #include "list.h"
-#include "mystring.h"
 
 BEGIN_ZFC_NAMESPACE
 
@@ -76,9 +75,9 @@
 	}
 }
 
-String quote(const ByteArray &bytes)
+std::string quote(const ByteArray &bytes)
 {
-	String result;
+	std::string result;
 
 	for (unsigned char byte : bytes)
 		result += representByte(byte);

mercurial