diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 08:11:12 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 08:11:12 +1000 |
commit | 9a274915a16eea5e3ce51a27b1a8741ac5e785b8 (patch) | |
tree | 952d7239d645985b08edf0c7e9fbcc6e3f43a2f5 /cppuhelper/source/implbase.cxx | |
parent | 8dd791560b08525eec3853029fc9f4e1c49f74de (diff) |
tdf#43157: convert cppuhelper and io from OSL_ASSERT to assert
Change-Id: I56d49e1ce9f1c070fedcabb8f1637d17dee1083b
Diffstat (limited to 'cppuhelper/source/implbase.cxx')
-rw-r--r-- | cppuhelper/source/implbase.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/implbase.cxx b/cppuhelper/source/implbase.cxx index 6118ccb79fc1..596508e213a8 100644 --- a/cppuhelper/source/implbase.cxx +++ b/cppuhelper/source/implbase.cxx @@ -82,7 +82,7 @@ void WeakComponentImplHelperBase::release() exc.Message, RTL_TEXTENCODING_ASCII_US ).getStr() ); static_cast<void>(exc); } - OSL_ASSERT( rBHelper.bDisposed ); + assert( rBHelper.bDisposed ); } OWeakObject::release(); } @@ -209,7 +209,7 @@ void WeakAggComponentImplHelperBase::release() exc.Message, RTL_TEXTENCODING_ASCII_US ).getStr() ); static_cast<void>(exc); } - OSL_ASSERT( rBHelper.bDisposed ); + assert( rBHelper.bDisposed ); } OWeakAggObject::release(); } |