Remove unneeded num_result_bigits decrement

For what I see this seems unused?
This commit is contained in:
Javier Honduvilla Coto 2021-06-28 15:43:55 +01:00 committed by GitHub
parent c3c27e5ab5
commit 3628a80883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -563,7 +563,6 @@ class bigint {
(*this)[bigit_index] = static_cast<bigit>(sum);
sum >>= bits<bigit>::value;
}
--num_result_bigits;
remove_leading_zeros();
exp_ *= 2;
}