Skip to content

Commit f4903f2

Browse files
authored
run clang-format (#1089)
1 parent 9ad6e8b commit f4903f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib_json/json_reader.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1634,8 +1634,8 @@ bool OurReader::decodeString(Token& token) {
16341634

16351635
bool OurReader::decodeString(Token& token, String& decoded) {
16361636
decoded.reserve(static_cast<size_t>(token.end_ - token.start_ - 2));
1637-
Location current = token.start_ + 1; // skip '"'
1638-
Location end = token.end_ - 1; // do not include '"'
1637+
Location current = token.start_ + 1; // skip '"'
1638+
Location end = token.end_ - 1; // do not include '"'
16391639
while (current != end) {
16401640
Char c = *current++;
16411641
if (c == '"') {

0 commit comments

Comments
 (0)