Fix syntax error

This commit is contained in:
Daniel Marjamäki 2017-10-21 22:17:07 +02:00
parent c4c76aa1ad
commit 002f6679d5
1 changed files with 1 additions and 1 deletions

View File

@ -909,7 +909,7 @@ static void valueFlowBitAnd(TokenList *tokenlist)
while (bit <= (MathLib::bigint_bits - 2) && ((((MathLib::bigint)1) << bit) < number))
++bit;
if (((MathLib::bigint)1) << bit) == number) {
if ((((MathLib::bigint)1) << bit) == number) {
setTokenValue(tok, ValueFlow::Value(0), tokenlist->getSettings());
setTokenValue(tok, ValueFlow::Value(number), tokenlist->getSettings());
}