From f75aca1921768ca4bd10bd73f06a7f7806a89bac Mon Sep 17 00:00:00 2001 From: Robert Reif Date: Thu, 30 Oct 2014 13:47:20 +0100 Subject: [PATCH] SymbolDatabase: change symboldatabase::findFunction to only check function arguments for function calls --- lib/symboldatabase.cpp | 45 +++++++++++++++++++++++++----------------- 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/lib/symboldatabase.cpp b/lib/symboldatabase.cpp index 82867ae56..cba95e665 100644 --- a/lib/symboldatabase.cpp +++ b/lib/symboldatabase.cpp @@ -2797,9 +2797,32 @@ const Type* SymbolDatabase::findVariableType(const Scope *start, const Token *ty */ const Function* Scope::findFunction(const Token *tok) const { - for (std::list::const_iterator i = functionList.begin(); i != functionList.end(); ++i) { - if (i->tokenDef->str() == tok->str()) { - const Function *func = &*i; + std::list::const_iterator it; + + // check for the actual definiton or declaration + for (it = functionList.begin(); it != functionList.end(); ++it) { + if (it->tokenDef == tok || it->token == tok) + return &*it; + } + + // check in base classes + if (isClassOrStruct() && definedType && !definedType->derivedFrom.empty()) { + for (std::size_t i = 0; i < definedType->derivedFrom.size(); ++i) { + const Type *base = definedType->derivedFrom[i].type; + if (base && base->classScope) { + if (base->classScope == this) // Ticket #5120, #5125: Recursive class; tok should have been found already + continue; + const Function * func = base->classScope->findFunction(tok); + if (func) + return func; + } + } + } + + // this is a function call so try to find it based on name and arguments + for (it = functionList.begin(); it != functionList.end(); ++it) { + if (it->tokenDef->str() == tok->str()) { + const Function *func = &*it; if ((tok->strAt(1) == "(" || (func->name() == tok->str() && tok->strAt(1) == "{" && func->type == Function::eConstructor)) && tok->tokAt(2)) { std::string end(tok->strAt(1) == "{" ? "}" : ")"); // check the arguments @@ -2830,21 +2853,7 @@ const Function* Scope::findFunction(const Token *tok) const } } - // check in base classes - if (isClassOrStruct() && definedType && !definedType->derivedFrom.empty()) { - for (std::size_t i = 0; i < definedType->derivedFrom.size(); ++i) { - const Type *base = definedType->derivedFrom[i].type; - if (base && base->classScope) { - if (base->classScope == this) // Ticket #5120, #5125: Recursive class; tok should have been found already - continue; - const Function * func = base->classScope->findFunction(tok); - if (func) - return func; - } - } - } - - return 0; + return nullptr; } //---------------------------------------------------------------------------