make a function static

This commit is contained in:
Daniel Marjamäki 2021-01-21 20:27:28 +01:00
parent f1cc3ada86
commit 14365ffc7c
1 changed files with 1 additions and 1 deletions

View File

@ -3725,7 +3725,7 @@ static const Token* findIncompleteVar(const Token* start, const Token* end)
return nullptr;
}
ValueFlow::Value makeConditionValue(long long val, const Token* condTok, bool assume)
static ValueFlow::Value makeConditionValue(long long val, const Token* condTok, bool assume)
{
ValueFlow::Value v(val);
v.setKnown();