Use CATCH_FORWARD in Detail::make_unique

This commit is contained in:
Martin Hořeňovský 2021-09-30 20:27:38 +02:00
parent 77c7e9803e
commit 23f0d94b4f
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 3 additions and 5 deletions

View File

@ -11,6 +11,8 @@
#include <cassert>
#include <type_traits>
#include <catch2/internal/catch_move_and_forward.hpp>
#if defined(__clang__) && defined(__has_attribute)
# if __has_attribute(trivial_abi)
# define TRIVIAL_ABI [[clang::trivial_abi]]
@ -116,11 +118,7 @@ namespace Detail {
template <typename T, typename... Args>
unique_ptr<T> make_unique(Args&&... args) {
// static_cast<Args&&> does the same thing as std::forward in
// this case, but does not require including big header (<utility>)
// and compiles faster thanks to not requiring template instantiation
// and overload resolution
return unique_ptr<T>(new T(static_cast<Args&&>(args)...));
return unique_ptr<T>(new T(CATCH_FORWARD(args)...));
}