catch2/src
Martin Hořeňovský 33b47f7309
Fix warnings from stringifying functions
The only way to stream those is to use the `bool` overload of `op<<`.
However, to convert a function to bool, GCC creates AST equivalent
of `A? true : false`. Then, because `A` is a function, it warns that
it will never be `false`. 🤦

As a bonus, newer GCC versions issue _two_ different warnings about
this, but older GCC versions do not know both of them, so we also
have to suppress warning about unknown warning suppression.
2020-02-26 16:07:41 +01:00
..
catch2 Fix warnings from stringifying functions 2020-02-26 16:07:41 +01:00
CMakeLists.txt Add development build option to CMake and enable it on CI 2020-02-26 16:07:26 +01:00