Silencing Wextra-semi warning (#4188)

This commit is contained in:
Francesco Cavaliere 2024-10-03 18:00:55 +02:00 committed by GitHub
parent c90bc91862
commit 18792893d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2674,7 +2674,7 @@ class bigint {
FMT_CONSTEXPR auto get_bigit(int i) const -> bigit {
return i >= exp_ && i < num_bigits() ? bigits_[i - exp_] : 0;
};
}
FMT_CONSTEXPR void subtract_bigits(int index, bigit other, bigit& borrow) {
auto result = double_bigit(bigits_[index]) - other - borrow;