Remove redundant check

This commit is contained in:
Dmitry-Me 2015-12-16 16:36:06 +03:00
parent ad17a0d721
commit 0d2edc532c
1 changed files with 0 additions and 1 deletions

View File

@ -711,7 +711,6 @@ void Tokenizer::simplifyTypedef()
typeStart = tokOffset;
while (Token::Match(tokOffset, "const|struct|enum %type%") ||
(Token::Match(tokOffset, "signed|unsigned %type%") && tokOffset->next()->isStandardType()) ||
(tokOffset->next() && tokOffset->next()->isStandardType()))
tokOffset = tokOffset->next();