From 002f6679d58bc41cb686cd8812cfb7d5f30ee603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 21 Oct 2017 22:17:07 +0200 Subject: [PATCH] Fix syntax error --- lib/valueflow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/valueflow.cpp b/lib/valueflow.cpp index 599aa3063..245ca3413 100644 --- a/lib/valueflow.cpp +++ b/lib/valueflow.cpp @@ -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()); }