diff options
Diffstat (limited to '3rdParty/CppUnit/src/include/cppunit/Protector.h')
| -rw-r--r-- | 3rdParty/CppUnit/src/include/cppunit/Protector.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/3rdParty/CppUnit/src/include/cppunit/Protector.h b/3rdParty/CppUnit/src/include/cppunit/Protector.h index d14e75f..c6d2e7c 100644 --- a/3rdParty/CppUnit/src/include/cppunit/Protector.h +++ b/3rdParty/CppUnit/src/include/cppunit/Protector.h @@ -81,12 +81,14 @@ public: Protector *protector ); /// Pops the protector. ~ProtectorGuard(); private: + ProtectorGuard( const ProtectorGuard& ); /* not copyable */ + ProtectorGuard& operator=( const ProtectorGuard& ); /* not assignable */ TestResult *m_result; }; CPPUNIT_NS_END |
Swift