--- 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);