mirror of
https://github.com/catchorg/Catch2.git
synced 2025-02-17 03:43:29 +01:00
Use = delete instead of private, unimplemented copy operations
This commit is contained in:
parent
0bb9f52a99
commit
3f6c078173
@ -71,9 +71,8 @@ struct AutoReg {
|
|||||||
|
|
||||||
~AutoReg();
|
~AutoReg();
|
||||||
|
|
||||||
private:
|
AutoReg( AutoReg const& ) = delete;
|
||||||
AutoReg( AutoReg const& );
|
AutoReg& operator = (AutoReg const& ) = delete;
|
||||||
void operator= ( AutoReg const& );
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void registerTestCaseFunction
|
void registerTestCaseFunction
|
||||||
|
Loading…
Reference in New Issue
Block a user