summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/CppUnit/src/include/cppunit/Protector.h')
-rw-r--r--3rdParty/CppUnit/src/include/cppunit/Protector.h2
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
@@ -84,6 +84,8 @@ public:
84 ~ProtectorGuard(); 84 ~ProtectorGuard();
85 85
86private: 86private:
87 ProtectorGuard( const ProtectorGuard& ); /* not copyable */
88 ProtectorGuard& operator=( const ProtectorGuard& ); /* not assignable */
87 TestResult *m_result; 89 TestResult *m_result;
88}; 90};
89 91