mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-03 13:55:39 +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