run clang-format (#1089)

This commit is contained in:
dota17 2019-11-09 11:04:38 +08:00 committed by GitHub
parent 9ad6e8b1f2
commit f4903f2766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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