Tweaked the --check-library output so configured methods will not be shown
This commit is contained in:
parent
fcba5b88c2
commit
abc3779e61
|
@ -437,9 +437,13 @@ void CheckFunctions::checkLibraryMatchFunctions()
|
||||||
if (!_settings->library.isNotLibraryFunction(tok))
|
if (!_settings->library.isNotLibraryFunction(tok))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
const std::string &functionName = _settings->library.getFunctionName(tok);
|
||||||
|
if (functionName.empty() || _settings->library.functions.find(functionName) != _settings->library.functions.end())
|
||||||
|
continue;
|
||||||
|
|
||||||
reportError(tok,
|
reportError(tok,
|
||||||
Severity::information,
|
Severity::information,
|
||||||
"checkLibraryFunction",
|
"checkLibraryFunction",
|
||||||
"--check-library: There is no matching configuration for function " + _settings->library.getFunctionName(tok) + "()");
|
"--check-library: There is no matching configuration for function " + functionName + "()");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue