Fix compiler warning, non-static function
This commit is contained in:
parent
229832e72e
commit
4907c7e3e4
|
@ -1794,7 +1794,7 @@ bool isVariableChangedByFunctionCall(const Token *tok, int indirect, const Setti
|
|||
return false;
|
||||
}
|
||||
|
||||
bool isVariableChangedByFunctionCall(const Token* tok, int indirect, const Settings* settings)
|
||||
static bool isVariableChangedByFunctionCall(const Token* tok, int indirect, const Settings* settings)
|
||||
{
|
||||
bool inconclusive = false;
|
||||
bool r = isVariableChangedByFunctionCall(tok, indirect, settings, &inconclusive);
|
||||
|
|
Loading…
Reference in New Issue