Explicit continue instead of fall through with a check

This commit is contained in:
Dmitry-Me 2015-10-15 18:03:27 +03:00
parent 430e31ec1e
commit ae7a7d287e
1 changed files with 1 additions and 1 deletions

View File

@ -3200,7 +3200,7 @@ bool Tokenizer::simplifySizeof()
tok2 = tok2->linkAt(1); tok2 = tok2->linkAt(1);
} }
if (Token::simpleMatch(tok2, "] [")) if (Token::simpleMatch(tok2, "] ["))
sz = 0; continue;
} }
} else if (nametok->strAt(1) == "[" && nametok->isStandardType()) { } else if (nametok->strAt(1) == "[" && nametok->isStandardType()) {
sz = sizeOfType(nametok); sz = sizeOfType(nametok);