From aed2e44d1be79ab649ba45512ee51cfaa21bc1d0 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 27 Oct 2019 14:07:49 +0100 Subject: [PATCH] =?utf8?q?Avoid=20"suggest=20parentheses=20around=20?= =?utf8?q?=E2=80=98-=E2=80=99=20inside=20=E2=80=98>>=E2=80=99"=20warning.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/integer/conv/cl_I_from_digits.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/integer/conv/cl_I_from_digits.cc b/src/integer/conv/cl_I_from_digits.cc index e51c20a..681c51d 100644 --- a/src/integer/conv/cl_I_from_digits.cc +++ b/src/integer/conv/cl_I_from_digits.cc @@ -49,7 +49,7 @@ static const cl_I digits_to_I_base2 (const char * MSBptr, uintC len, uintD base) // d is ready to be written into the NUDS: lsprefnext(erg_MSDptr) = d; ch_where = ch_where-intDsize; - d = (uintD)ch >> b-ch_where; // carry + d = (uintD)ch >> (b-ch_where); // carry erg_len++; } } -- 2.49.0