catch2/include
Martin Hořeňovský b7b346c3e5
Make warnings in assertions fire for GCC/Clang again
The old code caused warnings to fire under MSVC, and Clang <3.8.
I could not find a GCC version where it worked, but I assume that it
did at some point.

This new code causes all of MSVC, GCC, Clang, in current versions,
to emit signed/unsigned comparison warning in test like this:

```cpp
TEST_CASE() {
    int32_t i = -1;
    uint32_t j = 1;
    REQUIRE(i != j);
}
```

Where previously only MSVC would emit the warning.

Fixes #1880
2020-03-19 09:45:41 +01:00
..
external Fix vendored dep because upstream is non-responsive 2019-04-10 20:17:25 +02:00
internal Make warnings in assertions fire for GCC/Clang again 2020-03-19 09:45:41 +01:00
reporters Don't cast nanoseconds to integers when writing output 2020-03-08 12:10:44 +01:00
catch.hpp v2.11.1 2019-12-28 21:24:04 +01:00
catch_with_main.hpp Fixed catch_with_main.hpp (no longer references deleted catch_runner.hpp) 2015-12-28 15:06:04 +00:00