diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-01 12:19:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-01 12:19:19 +0100 |
commit | 659210773abff4dd4a5937c7995af5c0981e9020 (patch) | |
tree | 3911361aca3fc2441a7cd32813e738b0fe98364b | |
parent | 8bd3d06d974fbd301665630e3c5396db9c9e30d9 (diff) |
loplugin:unnecessaryoverride (dtors) in sal
Change-Id: I498bb634f2a5800f5effab99227aa4699ed91aae
-rw-r--r-- | sal/qa/osl/condition/osl_Condition.cxx | 5 | ||||
-rw-r--r-- | sal/qa/osl/pipe/osl_Pipe.cxx | 3 |
2 files changed, 0 insertions, 8 deletions
diff --git a/sal/qa/osl/condition/osl_Condition.cxx b/sal/qa/osl/condition/osl_Condition.cxx index ec254eed7891..8ee37b2c0aac 100644 --- a/sal/qa/osl/condition/osl_Condition.cxx +++ b/sal/qa/osl/condition/osl_Condition.cxx @@ -39,11 +39,6 @@ public: //get the Condition to operate ConditionThread( ::osl::Condition& Con, ConditionType tType): m_MyCon( Con ), m_MyType( tType ) { } - virtual ~ConditionThread( ) override - { - // LLA: do not throw in DTors! - // LLA: CPPUNIT_ASSERT_MESSAGE( "#ConditionThread does not shutdown properly.\n", sal_False == this -> isRunning( ) ); - } protected: ::osl::Condition& m_MyCon; ConditionType m_MyType; diff --git a/sal/qa/osl/pipe/osl_Pipe.cxx b/sal/qa/osl/pipe/osl_Pipe.cxx index 3e7276350397..988df004cf70 100644 --- a/sal/qa/osl/pipe/osl_Pipe.cxx +++ b/sal/qa/osl/pipe/osl_Pipe.cxx @@ -736,9 +736,6 @@ namespace osl_StreamPipe sal_Char buf[256]; Pipe_DataSink_Thread( ) { } - virtual ~Pipe_DataSink_Thread( ) override - { - } protected: void SAL_CALL run( ) override { |