ValueFlow: result of ? is not 'known'

This commit is contained in:
Daniel Marjamäki 2015-07-17 15:22:24 +02:00
parent 61cf224f32
commit 577ab1c2ac
1 changed files with 3 additions and 0 deletions

View File

@ -367,6 +367,9 @@ static void setTokenValue(Token* tok, const ValueFlow::Value &value)
ValueFlow::Value v(value);
v.conditional = true;
if (v.valueKind == ValueFlow::Value::Known)
v.valueKind = ValueFlow::Value::Possible;
if (!variables.empty())
v.varId = *(variables.begin());