diff options
Diffstat (limited to 'configmgr/source/configurationregistry.cxx')
-rw-r--r-- | configmgr/source/configurationregistry.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/configurationregistry.cxx b/configmgr/source/configurationregistry.cxx index 437cc798d335..5370f036cde5 100644 --- a/configmgr/source/configurationregistry.cxx +++ b/configmgr/source/configurationregistry.cxx @@ -78,7 +78,7 @@ private: Service(const Service&) = delete; Service& operator=(const Service&) = delete; - virtual ~Service() {} + virtual ~Service() override {} virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override @@ -161,7 +161,7 @@ private: RegistryKey(const RegistryKey&) = delete; RegistryKey& operator=(const RegistryKey&) = delete; - virtual ~RegistryKey() {} + virtual ~RegistryKey() override {} virtual OUString SAL_CALL getKeyName() throw (css::uno::RuntimeException, std::exception) override; |