summaryrefslogtreecommitdiffstats
path: root/include/salhelper
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 07:51:16 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 07:55:23 +1000
commit85c7782eb8ad01d891c1859764299058eb0a0ab8 (patch)
tree2aca076f422d4276442ba4e2c8f086e87459781a /include/salhelper
parenttdf#43157: convert store from OSL_ASSERT to assert (diff)
downloadcore-85c7782eb8ad01d891c1859764299058eb0a0ab8.tar.gz
core-85c7782eb8ad01d891c1859764299058eb0a0ab8.zip
tdf#43157: convert salhelper from OSL_ASSERT to assert
Change-Id: Ibbb8cf124b79626e89938a79f40f8ee714af8e86
Diffstat (limited to 'include/salhelper')
-rw-r--r--include/salhelper/refobj.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/salhelper/refobj.hxx b/include/salhelper/refobj.hxx
index bb2f31bcd78f..740ac57e19c3 100644
--- a/include/salhelper/refobj.hxx
+++ b/include/salhelper/refobj.hxx
@@ -85,7 +85,7 @@ protected:
*/
virtual ~ReferenceObject()
{
- OSL_ASSERT(m_nReferenceCount == 0);
+ assert(m_nReferenceCount == 0);
}
};