summaryrefslogtreecommitdiff
path: root/src/3rd_party-static/jsoncpp/src/lib_json/json_reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rd_party-static/jsoncpp/src/lib_json/json_reader.cpp')
-rw-r--r--src/3rd_party-static/jsoncpp/src/lib_json/json_reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rd_party-static/jsoncpp/src/lib_json/json_reader.cpp b/src/3rd_party-static/jsoncpp/src/lib_json/json_reader.cpp
index 9bc6f23275..d0abe34811 100644
--- a/src/3rd_party-static/jsoncpp/src/lib_json/json_reader.cpp
+++ b/src/3rd_party-static/jsoncpp/src/lib_json/json_reader.cpp
@@ -576,7 +576,7 @@ Reader::decodeNumber( Token &token )
: Value::maxLargestUInt;
Value::LargestUInt threshold = maxIntegerValue / 10;
Value::UInt lastDigitThreshold = Value::UInt( maxIntegerValue % 10 );
- assert( lastDigitThreshold >=0 && lastDigitThreshold <= 9 );
+ assert(lastDigitThreshold <= 9 );
Value::LargestUInt value = 0;
while ( current < token.end_ )
{