1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

🏁 fixed an MSVC warning

This commit is contained in:
Niels Lohmann
2018-03-14 07:32:28 +01:00
parent 282bafae4f
commit 1262d474eb

View File

@ -152,7 +152,7 @@ TEST_CASE("UBJSON")
numbers.push_back(-10000000);
numbers.push_back(-100000000);
numbers.push_back(-1000000000);
numbers.push_back(-2147483648L);
numbers.push_back(-2147483647 - 1); // https://stackoverflow.com/a/29356002/266378
for (auto i : numbers)
{
CAPTURE(i);