Commit 9eb86e1e authored by Niels's avatar Niels Committed by GitHub

Merge pull request #266 from 06needhamt/Issue

Fix Issue #265
parents 39213bf3 fb90388a
......@@ -8504,7 +8504,7 @@ basic_json_parser_63:
else
{
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
......
......@@ -7814,7 +7814,7 @@ class basic_json
else
{
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
......
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