tokenize : Removed unneeded variable

This commit is contained in:
Daniel Marjamäki 2009-01-04 07:14:46 +00:00
parent 7d59985d88
commit f79b06b5a0
1 changed files with 1 additions and 9 deletions

View File

@ -1518,8 +1518,6 @@ void Tokenizer::fillFunctionList()
{ {
_functionList.clear(); _functionList.clear();
bool classfunc = false;
int indentlevel = 0; int indentlevel = 0;
for ( const Token *tok = _tokens; tok; tok = tok->next() ) for ( const Token *tok = _tokens; tok; tok = tok->next() )
{ {
@ -1534,13 +1532,7 @@ void Tokenizer::fillFunctionList()
continue; continue;
} }
if (strchr("};", tok->aaaa0())) if (Token::Match(tok, "%var% ("))
classfunc = false;
else if ( tok->str() == "::" )
classfunc = true;
else if (Token::Match(tok, "%var% ("))
{ {
// Check if this is the first token of a function implementation.. // Check if this is the first token of a function implementation..
for ( const Token *tok2 = tok->tokAt(2); tok2; tok2 = tok2->next() ) for ( const Token *tok2 = tok->tokAt(2); tok2; tok2 = tok2->next() )