Skip to content

Commit 7e1a02d

Browse files
committed
Fixup clang format
1 parent ac1b55c commit 7e1a02d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib_json/json_reader.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1577,7 +1577,8 @@ bool OurReader::decodeNumber(Token& token, Value& decoded) {
15771577
// b) this is the last digit, or
15781578
// c) it's small enough to fit in that rounding delta, we're okay.
15791579
// Otherwise treat this number as a double to avoid overflow.
1580-
if (value > threshold || current != token.end_ || digit > max_last_digit) {
1580+
if (value > threshold || current != token.end_ ||
1581+
digit > max_last_digit) {
15811582
return decodeDouble(token, decoded);
15821583
}
15831584
}

0 commit comments

Comments
 (0)