summaryrefslogtreecommitdiff
path: root/src/cppunit/ProtectorChain.cpp
diff options
context:
space:
mode:
authorTobias Lippert <drtl@fastmail.fm>2013-08-15 22:27:46 +0200
committerTor Lillqvist <tml@iki.fi>2013-08-15 20:57:12 +0000
commit773ba28bfb3ce86dd2f9704d39d60b00d5f30b77 (patch)
treefad0365797295712e5c4d5a34f4c5f5dbcead06e /src/cppunit/ProtectorChain.cpp
parent89abdff7b0dcba8c050ce9ef7f68760511814f2f (diff)
downloadcppunit-773ba28bfb3ce86dd2f9704d39d60b00d5f30b77.tar.gz
Bug # 51154: cppunit warning cleaning
This patch allows to compile the code with gcc's -Weffc++ It consists mostly of making copy constructors and assignment operators explicit and private, and of initializing all members in initializer lists. Change-Id: I6f1cae812c58e3791c2386a1288501cf2f559610 Reviewed-on: https://gerrit.libreoffice.org/5424 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
Diffstat (limited to 'src/cppunit/ProtectorChain.cpp')
-rw-r--r--src/cppunit/ProtectorChain.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cppunit/ProtectorChain.cpp b/src/cppunit/ProtectorChain.cpp
index f528341..db7744a 100644
--- a/src/cppunit/ProtectorChain.cpp
+++ b/src/cppunit/ProtectorChain.cpp
@@ -21,11 +21,20 @@ public:
}
private:
+ // disable copying
+ ProtectFunctor( const ProtectFunctor& );
+ // disable copying
+ ProtectFunctor& operator=( const ProtectFunctor& );
+
Protector *m_protector;
const Functor &m_functor;
const ProtectorContext &m_context;
};
+ProtectorChain::ProtectorChain()
+ : m_protectors(0)
+{
+}
ProtectorChain::~ProtectorChain()
{