Commit fb90388a authored by Tom Needham's avatar Tom Needham

Fix Issue #265

parent 39213bf3
...@@ -8504,7 +8504,7 @@ basic_json_parser_63: ...@@ -8504,7 +8504,7 @@ basic_json_parser_63:
else else
{ {
type = value_t::number_unsigned; type = value_t::number_unsigned;
max = static_cast<uint64_t>((std::numeric_limits<number_unsigned_t>::max())); max = static_cast<uint64_t>((std::numeric_limits<number_unsigned_t>::max)());
} }
// count the significant figures // count the significant figures
......
...@@ -7814,7 +7814,7 @@ class basic_json ...@@ -7814,7 +7814,7 @@ class basic_json
else else
{ {
type = value_t::number_unsigned; type = value_t::number_unsigned;
max = static_cast<uint64_t>((std::numeric_limits<number_unsigned_t>::max())); max = static_cast<uint64_t>((std::numeric_limits<number_unsigned_t>::max)());
} }
// count the significant figures // count the significant figures
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment