1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-13 20:21:48 +03:00

💄 cleanup

This commit is contained in:
Niels Lohmann
2017-02-16 08:01:01 +01:00
parent 973402c11e
commit 2c17c1b1b2
2 changed files with 2 additions and 18 deletions

View File

@ -10480,16 +10480,8 @@ class basic_json
case lexer::token_type::value_integer:
case lexer::token_type::value_float:
{
const bool ok = m_lexer.get_number(result, last_token);
m_lexer.get_number(result, last_token);
get_token();
// if number conversion was unsuccessful, then is is
// because the number was directly followed by an
// unexpected character (e.g. "01" where "1" is unexpected)
if (not ok)
{
unexpect(last_token);
}
break;
}