mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-07-04 18:40:01 +02:00
clang format
This commit is contained in:
parent
8eff94f5a9
commit
30ce8e1fa7
@ -1653,8 +1653,8 @@ bool OurReader::decodeString(Token& token, String& decoded) {
|
|||||||
Location current = token.start_ + 1; // skip '"'
|
Location current = token.start_ + 1; // skip '"'
|
||||||
Location end = token.end_ - 1; // do not include '"'
|
Location end = token.end_ - 1; // do not include '"'
|
||||||
if (features_.skipEscapeString_) {
|
if (features_.skipEscapeString_) {
|
||||||
decoded = String(current, end);
|
decoded = String(current, end);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
while (current != end) {
|
while (current != end) {
|
||||||
Char c = *current++;
|
Char c = *current++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user