mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 08:31:43 +02:00
fix toJSON function and some VS warnings
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user