diff --git a/Foundation/src/JSONString.cpp b/Foundation/src/JSONString.cpp index d2591170c..71887c5d8 100644 --- a/Foundation/src/JSONString.cpp +++ b/Foundation/src/JSONString.cpp @@ -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; diff --git a/JSON/src/Stringifier.cpp b/JSON/src/Stringifier.cpp index c82f52149..633ddf675 100644 --- a/JSON/src/Stringifier.cpp +++ b/JSON/src/Stringifier.cpp @@ -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;