Skip to content

Commit 002f667

Browse files
committed
Fix syntax error
1 parent c4c76aa commit 002f667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/valueflow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ static void valueFlowBitAnd(TokenList *tokenlist)
909909
while (bit <= (MathLib::bigint_bits - 2) && ((((MathLib::bigint)1) << bit) < number))
910910
++bit;
911911

912-
if (((MathLib::bigint)1) << bit) == number) {
912+
if ((((MathLib::bigint)1) << bit) == number) {
913913
setTokenValue(tok, ValueFlow::Value(0), tokenlist->getSettings());
914914
setTokenValue(tok, ValueFlow::Value(number), tokenlist->getSettings());
915915
}

0 commit comments

Comments
 (0)