Skip to content

Commit e1c5b1c

Browse files
author
unknown
committed
Merge branch 'development' of https://git01.codeplex.com/casablanca into development
2 parents e4c3c54 + 103ffb0 commit e1c5b1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/src/json/json.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ bool web::json::details::_String::has_escape_chars(const _String &str)
357357
{
358358
return std::any_of(std::begin(str.m_string), std::end(str.m_string), [](utility::string_t::value_type const x)
359359
{
360-
if (x >= 0 && x <= 31) { return true; }
360+
if (x <= 31) { return true; }
361361
if (x == '"') { return true; }
362362
if (x == '\\') { return true; }
363363
return false;

0 commit comments

Comments
 (0)