summaryrefslogtreecommitdiff
path: root/cppuhelper/source/implbase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppuhelper/source/implbase.cxx')
-rw-r--r--cppuhelper/source/implbase.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppuhelper/source/implbase.cxx b/cppuhelper/source/implbase.cxx
index 1f00accecb27..0673ce692738 100644
--- a/cppuhelper/source/implbase.cxx
+++ b/cppuhelper/source/implbase.cxx
@@ -59,13 +59,13 @@ Any WeakComponentImplHelperBase::queryInterface( Type const & rType )
}
void WeakComponentImplHelperBase::acquire()
- throw ()
+ noexcept
{
OWeakObject::acquire();
}
void WeakComponentImplHelperBase::release()
- throw ()
+ noexcept
{
if (osl_atomic_decrement( &m_refCount ) != 0)
return;
@@ -182,13 +182,13 @@ Any WeakAggComponentImplHelperBase::queryAggregation( Type const & rType )
}
void WeakAggComponentImplHelperBase::acquire()
- throw ()
+ noexcept
{
OWeakAggObject::acquire();
}
void WeakAggComponentImplHelperBase::release()
- throw ()
+ noexcept
{
Reference<XInterface> const xDelegator_(xDelegator);
if (xDelegator_.is()) {