mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-25 01:11:34 +02:00
fix: make deleted member function public
This commit is contained in:
committed by
Chris Thrasher
parent
334827eb53
commit
416b075211
@ -13,6 +13,7 @@ namespace Catch {
|
||||
|
||||
//! Deriving classes become noncopyable and nonmovable
|
||||
class NonCopyable {
|
||||
public:
|
||||
NonCopyable( NonCopyable const& ) = delete;
|
||||
NonCopyable( NonCopyable&& ) = delete;
|
||||
NonCopyable& operator=( NonCopyable const& ) = delete;
|
||||
|
Reference in New Issue
Block a user