diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-26 09:51:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-26 10:18:27 +0100 |
commit | 32e3789816de22452417685eb36538efc06a208a (patch) | |
tree | ab997d6b1f782589f9bf3d691b8a7953e0c9ae32 | |
parent | 5b2aaefb896dfe50d9cd1551ef46cacaddcf92b7 (diff) |
coverity#1130407 Missing break in switch
Change-Id: Ic4261e6ed9ea44ef8b4fad174b40febe4ff795fd
-rw-r--r-- | sc/source/ui/unoobj/tokenuno.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/ui/unoobj/tokenuno.cxx b/sc/source/ui/unoobj/tokenuno.cxx index 5cd494438646..2b7b884e0e11 100644 --- a/sc/source/ui/unoobj/tokenuno.cxx +++ b/sc/source/ui/unoobj/tokenuno.cxx @@ -476,6 +476,7 @@ bool ScTokenConversion::ConvertToTokenSequence( const ScDocument& rDoc, break; default: OSL_TRACE( "ScTokenConversion::ConvertToTokenSequence: unhandled token type SvStackVar %d", rToken.GetType()); + //fall-through case svSep: // occurs with ocSep, ocOpen, ocClose, ocArray* case svJump: // occurs with ocIf, ocChose case svMissing: // occurs with ocMissing |