Merge pull request #729 from Dmitry-Me/removeRedundantCheck

Remove redundant check
This commit is contained in:
Daniel Marjamäki 2015-12-16 15:03:07 +01:00
commit febe1c9c14
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();