summaryrefslogtreecommitdiff
path: root/sd/source/helper
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 14:46:42 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 14:46:42 +1000
commitd0a99cc2ed76be220f7e868e332ba19f6e48a440 (patch)
tree56addcedd12a0a4f16471e55c46a7835857d5555 /sd/source/helper
parent3965f4cb28676133dc37a926e56b4d612e2a57ba (diff)
tdf#43157: convert sd module away from OSL_ASSERT to assert
Change-Id: I1e768d23da6adb1a3fe351a8105286b0cb5b5192
Diffstat (limited to 'sd/source/helper')
-rw-r--r--sd/source/helper/simplereferencecomponent.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/helper/simplereferencecomponent.cxx b/sd/source/helper/simplereferencecomponent.cxx
index 57c792ea5b0c..9dc062ad7ebb 100644
--- a/sd/source/helper/simplereferencecomponent.cxx
+++ b/sd/source/helper/simplereferencecomponent.cxx
@@ -35,8 +35,8 @@ SimpleReferenceComponent::SimpleReferenceComponent()
SimpleReferenceComponent::~SimpleReferenceComponent()
{
- OSL_ASSERT(m_nCount == 0);
- OSL_ASSERT(mbDisposed);
+ assert(m_nCount == 0);
+ assert(mbDisposed);
}
void SimpleReferenceComponent::acquire()