Another attempt to fix appveyor

This commit is contained in:
Daniel Marjamäki 2019-07-10 21:30:50 +02:00
parent 45844ef962
commit 5f217021ab
1 changed files with 1 additions and 1 deletions

View File

@ -5461,7 +5461,7 @@ static void valueFlowSafeFunctionReturn(TokenList *tokenlist, const Settings *se
if (!getMinMaxValues(typestr, settings, &minvalue, &maxvalue))
continue;
auto value = [](int64_t v, int64_t minvalue, int64_t maxvalue) {
auto value = [](MathLib::bigint v, MathLib::bigint minvalue, MathLib::bigint maxvalue) {
if (v < minvalue)
return ValueFlow::Value(minvalue);
if (v > maxvalue)