Fix Travis hang
This commit is contained in:
parent
66a61fe5e8
commit
de07e2177c
|
@ -4057,8 +4057,10 @@ const Function* Scope::findFunction(const Token *tok, bool requireConst) const
|
||||||
const Function * func = matches[i];
|
const Function * func = matches[i];
|
||||||
size_t same = 0;
|
size_t same = 0;
|
||||||
|
|
||||||
if (requireConst && !func->isConst())
|
if (requireConst && !func->isConst()) {
|
||||||
|
i++;
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (!requireConst || !func->isConst()) {
|
if (!requireConst || !func->isConst()) {
|
||||||
// get the function this call is in
|
// get the function this call is in
|
||||||
|
|
Loading…
Reference in New Issue