Skip to content

Commit 819b4c8

Browse files
committed
Library: defer a function call in Library::matchArguments
1 parent 0794699 commit 819b4c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/library.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1435,10 +1435,10 @@ bool Library::matchArguments(const Token *ftok, const std::string &functionName,
14351435
{
14361436
if (functionName.empty())
14371437
return false;
1438-
const int callargs = numberOfArgumentsWithoutAst(ftok);
14391438
const std::unordered_map<std::string, Function>::const_iterator it = mData->mFunctions.find(functionName);
14401439
if (it == mData->mFunctions.cend())
14411440
return false;
1441+
const int callargs = numberOfArgumentsWithoutAst(ftok);
14421442
int args = 0;
14431443
int firstOptionalArg = -1;
14441444
for (const std::pair<const int, Library::ArgumentChecks> & argCheck : it->second.argumentChecks) {

0 commit comments

Comments
 (0)