Resolve CID 1037105
This commit is contained in:
parent
8bbbb54f94
commit
644d83e91b
|
@ -756,10 +756,12 @@ static bool if_findCompare(const Token * const tokBack, bool str)
|
||||||
|
|
||||||
if (Token::Match(tok,",|==|!="))
|
if (Token::Match(tok,",|==|!="))
|
||||||
return true;
|
return true;
|
||||||
|
if (tok) {
|
||||||
if (str && tok->isComparisonOp())
|
if (str && tok->isComparisonOp())
|
||||||
return true;
|
return true;
|
||||||
if (tok->isArithmeticalOp()) // result is used in some calculation
|
if (tok->isArithmeticalOp()) // result is used in some calculation
|
||||||
return true; // TODO: check if there is a comparison of the result somewhere
|
return true; // TODO: check if there is a comparison of the result somewhere
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue