Kaydet (Commit) 014ba79e authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#736052 Missing break in switch

Change-Id: I9e067659dea49683ceda9553b3d35254576079db
üst b446c561
...@@ -171,8 +171,8 @@ void SmWordExportBase::HandleMath(const SmNode* pNode, int nLevel) ...@@ -171,8 +171,8 @@ void SmWordExportBase::HandleMath(const SmNode* pNode, int nLevel)
{ {
case TDIVIDEBY: case TDIVIDEBY:
case TACUTE: case TACUTE:
// these are handled elsewhere, e.g. when handling BINHOR
OSL_ASSERT(false); OSL_ASSERT(false);
// the above are handled elsewhere, e.g. when handling BINHOR
default: default:
HandleText(pNode, nLevel); HandleText(pNode, nLevel);
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment