summaryrefslogtreecommitdiffstats
path: root/include/cppuhelper
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2016-09-21 15:49:36 +0200
committerJan-Marek Glogowski <glogow@fbihome.de>2016-09-23 23:25:47 +0200
commitf486329a03b8667bd958624937f02edc9af143d1 (patch)
tree39aca9529f23fa4ab0231d7905c2554a82979abf /include/cppuhelper
parenttdf#102382: nextEventMatchingMask should only be called from the Main Thread (diff)
downloadcore-f486329a03b8667bd958624937f02edc9af143d1.tar.gz
core-f486329a03b8667bd958624937f02edc9af143d1.zip
TDE fix some clang plugin based warnings
Change-Id: I3b44038e8a889e4c13126fd8d721e53e71ea9ec6
Diffstat (limited to 'include/cppuhelper')
-rw-r--r--include/cppuhelper/implbase.hxx22
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>(); }
};