Skip to content

Commit b395975

Browse files
authored
semicolon (rookie mistake!)
1 parent 1806274 commit b395975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib_json/json_writer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ static bool doesAnyCharRequireEscaping(char const* s, size_t n) {
179179
assert(s || !n);
180180

181181
return std::any_of(s, s + n, [](unsigned char c) {
182-
return c == '\\' || c == '"' || c < 0x20 || c > 0x7F
182+
return c == '\\' || c == '"' || c < 0x20 || c > 0x7F;
183183
});
184184
}
185185

0 commit comments

Comments
 (0)