diff options
Diffstat (limited to 'src/cppunit/TestCase.cpp')
| -rw-r--r-- | src/cppunit/TestCase.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cppunit/TestCase.cpp b/src/cppunit/TestCase.cpp index 13c0525..10ff578 100644 --- a/src/cppunit/TestCase.cpp +++ b/src/cppunit/TestCase.cpp @@ -34,6 +34,10 @@ public: } private: + // disable copying + TestCaseMethodFunctor( const TestCaseMethodFunctor& ); + // disable copying + TestCaseMethodFunctor& operator=( const TestCaseMethodFunctor& ); TestCase *m_target; Method m_method; }; |
