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

removed unnecessary code (numbers must not begin with "+")

This commit is contained in:
Niels
2016-05-07 20:22:58 +02:00
parent 688cd49bdc
commit 85a30813c8
4 changed files with 5 additions and 9 deletions

View File

@ -7758,10 +7758,6 @@ class basic_json
{
type = value_t::number_unsigned;
max = static_cast<uint64_t>(std::numeric_limits<number_unsigned_t>::max());
if (*curptr == '+')
{
curptr++;
}
}
// count the significant figures