summaryrefslogtreecommitdiff
path: root/comphelper/qa/container/comphelper_ifcontainer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/qa/container/comphelper_ifcontainer.cxx')
-rw-r--r--comphelper/qa/container/comphelper_ifcontainer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/qa/container/comphelper_ifcontainer.cxx b/comphelper/qa/container/comphelper_ifcontainer.cxx
index 261dedba34db..6da949301b4b 100644
--- a/comphelper/qa/container/comphelper_ifcontainer.cxx
+++ b/comphelper/qa/container/comphelper_ifcontainer.cxx
@@ -46,7 +46,7 @@ class ContainerListener : public ::cppu::WeakImplHelper1< XEventListener >
public:
explicit ContainerListener(ContainerStats *pStats)
: m_pStats(pStats) { m_pStats->m_nAlive++; }
- virtual ~ContainerListener() { m_pStats->m_nAlive--; }
+ virtual ~ContainerListener() override { m_pStats->m_nAlive--; }
virtual void SAL_CALL disposing( const EventObject& )
throw (RuntimeException, std::exception) override
{