diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 14:35:14 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 14:35:14 +1000 |
commit | 3965f4cb28676133dc37a926e56b4d612e2a57ba (patch) | |
tree | e53fd4a6d0453b861a870060ecf6be89249116f0 | |
parent | 381c43eb5d5455aeb5ed3335e89bb6b56c843080 (diff) |
tdf#43157: convert starmath module away from OSL_ASSERT to assert
Change-Id: I446eb5831dd41edac0752d1c4813a7e711042cd3
-rw-r--r-- | starmath/source/wordexportbase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/wordexportbase.cxx b/starmath/source/wordexportbase.cxx index cf32d067f364..95418f3df931 100644 --- a/starmath/source/wordexportbase.cxx +++ b/starmath/source/wordexportbase.cxx @@ -161,7 +161,7 @@ void SmWordExportBase::HandleMath(const SmNode* pNode, int nLevel) { case TDIVIDEBY: case TACUTE: - OSL_ASSERT(false); + assert(false); SAL_FALLTHROUGH; // the above are handled elsewhere, e.g. when handling BINHOR default: HandleText(pNode, nLevel); |