Split the NonCopyable helper out of catch_common.hpp

This commit is contained in:
Martin Hořeňovský 2020-08-18 11:35:58 +02:00
parent c1bb699d45
commit e7eb749815
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
15 changed files with 53 additions and 31 deletions

View file

@ -9,6 +9,7 @@
#define TWOBLUECUBES_CATCH_TEST_CASE_INFO_H_INCLUDED
#include <catch2/internal/catch_common.hpp>
#include <catch2/internal/catch_noncopyable.hpp>
#include <catch2/internal/catch_stringref.hpp>
#include <catch2/internal/catch_test_registry.hpp>
#include <catch2/internal/catch_unique_ptr.hpp>
@ -44,7 +45,7 @@ namespace Catch {
};
struct TestCaseInfo : NonCopyable {
struct TestCaseInfo : Detail::NonCopyable {
TestCaseInfo(std::string const& _className,
NameAndTags const& _tags,