Merge topic 'jsoncpp-add-missing-cast'

a7fe4413 jsoncpp: Add missing cast to convert from char to UInt
This commit is contained in:
Brad King 2015-09-28 10:44:39 -04:00 committed by CMake Topic Stage
commit c0574fd067
1 changed files with 1 additions and 1 deletions

View File

@ -529,7 +529,7 @@ bool Reader::decodeNumber(Token& token, Value& decoded) {
return addError("'" + std::string(token.start_, token.end_) +
"' is not a number.",
token);
Value::UInt digit(c - '0');
Value::UInt digit(static_cast<Value::UInt>(c - '0'));
if (value >= threshold) {
// We've hit or exceeded the max value divided by 10 (rounded down). If
// a) we've only just touched the limit, b) this is the last digit, and