Commit de289ea3 authored by Niels Lohmann's avatar Niels Lohmann

💚 another approach to the AppVeyor error

parent 81c43dca
...@@ -270,8 +270,8 @@ TEST_CASE("MessagePack") ...@@ -270,8 +270,8 @@ TEST_CASE("MessagePack")
SECTION("-9223372036854775808..-2147483649 (int 64)") SECTION("-9223372036854775808..-2147483649 (int 64)")
{ {
std::vector<int64_t> numbers; std::vector<int64_t> numbers;
numbers.push_back(-9223372036854775807-1); numbers.push_back(INT64_MIN);
numbers.push_back(-2147483649); numbers.push_back(-2147483649ll);
for (auto i : numbers) for (auto i : numbers)
{ {
CAPTURE(i); CAPTURE(i);
......
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