catch2/tests
Martin Hořeňovský 41bbaa6d57
Implement a simplified variant of std::unique_ptr<T>
This simplified variant supports only a subset of the functionality
in `std::unique_ptr<T>`. `Catch::Detail::unique_ptr<T>` only supports
single element pointer (no array support) with default deleter.

By removing the support for custom deleters, we also avoid requiring
significant machinery to support EBO, speeding up instantiations of
`unique_ptr<T>` significantly. Catch2 also currently does not need
to support `unique_ptr<T[]>`, so that is not supported either.
2020-05-31 15:08:47 +02:00
..
ExtraTests Remove catch_default_main.hpp 2020-05-09 18:00:49 +02:00
SelfTest Implement a simplified variant of std::unique_ptr<T> 2020-05-31 15:08:47 +02:00
TestScripts Randomize test for subset invariant random ordering of tests 2020-05-01 14:45:36 +02:00
CMakeLists.txt Implement a simplified variant of std::unique_ptr<T> 2020-05-31 15:08:47 +02:00