Refactoring: Use static for local function getMinMaxValues
This commit is contained in:
parent
c736d60642
commit
7799f820a3
|
@ -8539,7 +8539,7 @@ static void valueFlowDynamicBufferSize(TokenList* tokenlist, SymbolDatabase* sym
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool getMinMaxValues(const ValueType *vt, const cppcheck::Platform &platform, MathLib::bigint *minValue, MathLib::bigint *maxValue)
|
static bool getMinMaxValues(const ValueType *vt, const cppcheck::Platform &platform, MathLib::bigint *minValue, MathLib::bigint *maxValue)
|
||||||
{
|
{
|
||||||
if (!vt || !vt->isIntegral() || vt->pointer)
|
if (!vt || !vt->isIntegral() || vt->pointer)
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue