Commit 81c43dca authored by Niels Lohmann's avatar Niels Lohmann

💚 more AppVeyor fixes

parent 3f14a09e
...@@ -269,10 +269,10 @@ TEST_CASE("MessagePack") ...@@ -269,10 +269,10 @@ TEST_CASE("MessagePack")
SECTION("-9223372036854775808..-2147483649 (int 64)") SECTION("-9223372036854775808..-2147483649 (int 64)")
{ {
for (int64_t i : std::vector<int64_t> numbers;
{ numbers.push_back(-9223372036854775807-1);
-9223372036854775807 - 1, -2147483649 numbers.push_back(-2147483649);
}) 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