don't debug warn about class function definitions without body having missing varid on function parameters

This commit is contained in:
Robert Reif 2011-04-22 21:41:55 -04:00
parent c5b81c6a79
commit 6750c7b492
2 changed files with 5 additions and 4 deletions

View File

@ -650,7 +650,7 @@ SymbolDatabase::SymbolDatabase(const Tokenizer *tokenizer, const Settings *setti
for (func = scope->functionList.begin(); func != scope->functionList.end(); ++func) for (func = scope->functionList.begin(); func != scope->functionList.end(); ++func)
{ {
// add arguments // add arguments
func->addArguments(this, scope); func->addArguments(this, &*func, scope);
} }
} }
@ -1234,7 +1234,7 @@ unsigned int Function::initializedArgCount() const
return count; return count;
} }
void Function::addArguments(const SymbolDatabase *symbolDatabase, const Scope *scope) void Function::addArguments(const SymbolDatabase *symbolDatabase, const Function *func, const Scope *scope)
{ {
// check for non-empty argument list "( ... )" // check for non-empty argument list "( ... )"
if (arg->link() != arg->next() && !Token::simpleMatch(arg, "( void )")) if (arg->link() != arg->next() && !Token::simpleMatch(arg, "( void )"))
@ -1279,7 +1279,8 @@ void Function::addArguments(const SymbolDatabase *symbolDatabase, const Scope *s
nameTok = tok->previous(); nameTok = tok->previous();
endTok = nameTok->previous(); endTok = nameTok->previous();
symbolDatabase->debugMessage(nameTok, "Function::addArguments found argument \'" + nameTok->str() + "\' with varid 0."); if (func->hasBody)
symbolDatabase->debugMessage(nameTok, "Function::addArguments found argument \'" + nameTok->str() + "\' with varid 0.");
} }
else else
endTok = startTok; endTok = startTok;

View File

@ -353,7 +353,7 @@ public:
return argumentList.size(); return argumentList.size();
} }
unsigned int initializedArgCount() const; unsigned int initializedArgCount() const;
void addArguments(const SymbolDatabase *symbolDatabase, const Scope *scope); void addArguments(const SymbolDatabase *symbolDatabase, const Function *func, const Scope *scope);
const Token *tokenDef; // function name token in class definition const Token *tokenDef; // function name token in class definition
const Token *argDef; // function argument start '(' in class definition const Token *argDef; // function argument start '(' in class definition