diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2016-09-21 15:49:36 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2016-09-23 23:25:47 +0200 |
commit | f486329a03b8667bd958624937f02edc9af143d1 (patch) | |
tree | 39aca9529f23fa4ab0231d7905c2554a82979abf /include | |
parent | e44b034512551c09689edcecfa7401ecbb4af80e (diff) |
TDE fix some clang plugin based warnings
Change-Id: I3b44038e8a889e4c13126fd8d721e53e71ea9ec6
Diffstat (limited to 'include')
-rw-r--r-- | include/cppuhelper/implbase.hxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/cppuhelper/implbase.hxx b/include/cppuhelper/implbase.hxx index 850224c49683..f8c8bae54d5f 100644 --- a/include/cppuhelper/implbase.hxx +++ b/include/cppuhelper/implbase.hxx @@ -101,23 +101,23 @@ class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper: protected: WeakImplHelper() {} - virtual ~WeakImplHelper() SAL_OVERRIDE {} + virtual ~WeakImplHelper() override {} public: css::uno::Any SAL_CALL queryInterface(css::uno::Type const & aType) - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE + throw (css::uno::RuntimeException, std::exception) override { return WeakImplHelper_query(aType, cd::get(), this, this); } - void SAL_CALL acquire() throw () SAL_OVERRIDE { OWeakObject::acquire(); } + void SAL_CALL acquire() throw () override { OWeakObject::acquire(); } - void SAL_CALL release() throw () SAL_OVERRIDE { OWeakObject::release(); } + void SAL_CALL release() throw () override { OWeakObject::release(); } css::uno::Sequence<css::uno::Type> SAL_CALL getTypes() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE + throw (css::uno::RuntimeException, std::exception) override { return WeakImplHelper_getTypes(cd::get()); } css::uno::Sequence<sal_Int8> SAL_CALL getImplementationId() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE + throw (css::uno::RuntimeException, std::exception) override { return css::uno::Sequence<sal_Int8>(); } }; @@ -156,22 +156,22 @@ protected: public: css::uno::Any SAL_CALL queryInterface(css::uno::Type const & aType) - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE + throw (css::uno::RuntimeException, std::exception) override { css::uno::Any ret(ImplHelper_queryNoXInterface(aType, cd::get(), this)); return ret.hasValue() ? ret : BaseClass::queryInterface(aType); } - void SAL_CALL acquire() throw () SAL_OVERRIDE { BaseClass::acquire(); } + void SAL_CALL acquire() throw () override { BaseClass::acquire(); } - void SAL_CALL release() throw () SAL_OVERRIDE { BaseClass::release(); } + void SAL_CALL release() throw () override { BaseClass::release(); } css::uno::Sequence<css::uno::Type> SAL_CALL getTypes() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE + throw (css::uno::RuntimeException, std::exception) override { return ImplInhHelper_getTypes(cd::get(), BaseClass::getTypes()); } css::uno::Sequence<sal_Int8> SAL_CALL getImplementationId() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE + throw (css::uno::RuntimeException, std::exception) override { return css::uno::Sequence<sal_Int8>(); } }; |