🏁 fixed an MSVC warning

This commit is contained in:
Niels Lohmann 2018-03-14 07:32:28 +01:00
parent 282bafae4f
commit 1262d474eb
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

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);