Fixed cppcheck warnings: Removed extra 'Token::' from statement

This commit is contained in:
Daniel Marjamäki 2011-04-09 06:56:31 +02:00
parent 8e711b7925
commit a3f177fc97
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ public:
}
bool isExtendedOp() const
{
return isOp() || Token::Match(this, "[,[]()?:]");
return isOp() || Match(this, "[,[]()?:]");
}
bool isBoolean() const
{