catch2/include
Konstantin Baumann d8a3ffedba enhanced support for nullptr
these fixes enhance the support for C++11 nullptr/std::nullptr_t; now
you can write something like this:
std::exception_ptr ex;
CATCH_REQUIRE(ex == nullptr);
and
std::unique_ptr<int> ptr;
CATCH_REQUIRE(ptr.get() == nullptr);

The issue with the const_cast<T&> is that you cannot cast a
std::nullptr_t to a non-const-ref.
2013-01-31 10:50:04 +01:00
..
internal enhanced support for nullptr 2013-01-31 10:50:04 +01:00
reporters Squashed commit of the following: 2012-11-13 21:59:50 +00:00
catch_runner.hpp Fixed alternate stream bugs 2012-09-26 18:36:58 +01:00
catch_with_main.hpp Builds almost completely cleanly with -WEverything in LLVM 2012-08-13 07:46:10 +01:00
catch.hpp Squashed commit of the following: 2012-11-13 21:59:50 +00:00