From 002bb759ffc2ba03c7167d22cb58291b1b933af4 Mon Sep 17 00:00:00 2001 From: Javier Honduvilla Coto Date: Mon, 28 Jun 2021 15:43:55 +0100 Subject: [PATCH] Remove unneeded `num_result_bigits` decrement For what I see this seems unused? --- include/fmt/format-inl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index a802aea5..94a36d1b 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -563,7 +563,6 @@ class bigint { (*this)[bigit_index] = static_cast(sum); sum >>= bits::value; } - --num_result_bigits; remove_leading_zeros(); exp_ *= 2; }