Remove unused function

This commit is contained in:
Daniel Marjamäki 2021-02-11 19:27:36 +01:00
parent b6e93bb575
commit 0a71b52a87
1 changed files with 0 additions and 5 deletions

View File

@ -4013,11 +4013,6 @@ static std::list<ValueFlow::Value> truncateValues(std::list<ValueFlow::Value> va
return values;
}
static bool isLiteralNumber(const Token *tok, bool cpp)
{
return tok->isNumber() || tok->isEnumerator() || tok->str() == "NULL" || (cpp && Token::Match(tok, "false|true|nullptr"));
}
static bool isVariableInit(const Token *tok)
{
return tok->str() == "(" &&