mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-03 01:54:44 +02:00
This commit is contained in:
parent
e36cff19f0
commit
75b360af4a
@ -178,7 +178,7 @@ String valueToString(bool value) { return value ? "true" : "false"; }
|
|||||||
static bool isAnyCharRequiredQuoting(char const* s, size_t n) {
|
static bool isAnyCharRequiredQuoting(char const* s, size_t n) {
|
||||||
assert(s || !n);
|
assert(s || !n);
|
||||||
|
|
||||||
return std::any_of(s, s + n, [](int c) {
|
return std::any_of(s, s + n, [](unsigned char c) {
|
||||||
return c == '\\' || c == '"' || !std::isprint(c);
|
return c == '\\' || c == '"' || !std::isprint(c);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user