Merge pull request #695 from Dmitry-Me/explicitContinue

Explicit continue instead of fall through with a check
This commit is contained in:
PKEuS 2015-10-15 21:48:08 +02:00
commit c22833342c
1 changed files with 1 additions and 1 deletions

View File

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