Remove redundant code

This commit is contained in:
Thomas Jarosch 2014-03-14 15:56:40 +01:00
parent c80f272176
commit c625606f45
1 changed files with 1 additions and 4 deletions

View File

@ -74,10 +74,7 @@ void Check64BitPortability::pointerassignment()
type = INT;
else if (type == PTR && Token::Match(tok2, "- %var%") && isaddr(tok2->next()->variable()))
type = PTRDIFF;
else if (Token::Match(tok2, "(")) {
type = NO;
break;
} else if (tok2->str() == "(") {
else if (tok2->str() == "(") {
// TODO: handle parentheses
type = NO;
break;