From 30ce8e1fa7840e0a2a19e619a8ba058c040c1249 Mon Sep 17 00:00:00 2001 From: qiwei Date: Sun, 6 Oct 2024 13:30:02 +0800 Subject: [PATCH] clang format --- src/lib_json/json_reader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib_json/json_reader.cpp b/src/lib_json/json_reader.cpp index c9a55cf..2b554c8 100644 --- a/src/lib_json/json_reader.cpp +++ b/src/lib_json/json_reader.cpp @@ -1653,8 +1653,8 @@ bool OurReader::decodeString(Token& token, String& decoded) { Location current = token.start_ + 1; // skip '"' Location end = token.end_ - 1; // do not include '"' if (features_.skipEscapeString_) { - decoded = String(current, end); - return true; + decoded = String(current, end); + return true; } while (current != end) { Char c = *current++;