@@ -75,7 +75,7 @@ void toJSON(const std::string& value, std::ostream& out, bool wrap)
}
-std::string toJSON(const std::string& value, bool wrap, bool escapeAllUnicode)
+std::string toJSON(const std::string& value, bool wrap)
{
int options = (wrap ? Poco::JSON_WRAP_STRINGS : 0);
std::string ret;
@@ -27,7 +27,7 @@ namespace JSON {
void Stringifier::stringify(const Var& any, std::ostream& out, unsigned int indent, int step, int options)
- bool escapeUnicode = options & Poco::JSON_ESCAPE_UNICODE;
+ bool escapeUnicode = ((options & Poco::JSON_ESCAPE_UNICODE) != 0);
if (step == -1) step = indent;