diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-26 09:40:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-26 10:18:26 +0100 |
commit | 014ba79eeb4ea2756b398c61a285c0a7319df857 (patch) | |
tree | 1a36e577f924f146f1af452ba298c80373726e9a /starmath | |
parent | b446c561b1ca7d1b8838a14ce218f58acb718911 (diff) |
coverity#736052 Missing break in switch
Change-Id: I9e067659dea49683ceda9553b3d35254576079db
Diffstat (limited to 'starmath')
-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 ccdae333aed8..26af5a9f5ccf 100644 --- a/starmath/source/wordexportbase.cxx +++ b/starmath/source/wordexportbase.cxx @@ -171,8 +171,8 @@ void SmWordExportBase::HandleMath(const SmNode* pNode, int nLevel) { case TDIVIDEBY: case TACUTE: - // these are handled elsewhere, e.g. when handling BINHOR OSL_ASSERT(false); + // the above are handled elsewhere, e.g. when handling BINHOR default: HandleText(pNode, nLevel); break; |