forked from fmtlib/fmt
Silencing Wextra-semi warning (#4188)
This commit is contained in:
committed by
GitHub
parent
c90bc91862
commit
18792893d8
@@ -2674,7 +2674,7 @@ class bigint {
|
|||||||
|
|
||||||
FMT_CONSTEXPR auto get_bigit(int i) const -> bigit {
|
FMT_CONSTEXPR auto get_bigit(int i) const -> bigit {
|
||||||
return i >= exp_ && i < num_bigits() ? bigits_[i - exp_] : 0;
|
return i >= exp_ && i < num_bigits() ? bigits_[i - exp_] : 0;
|
||||||
};
|
}
|
||||||
|
|
||||||
FMT_CONSTEXPR void subtract_bigits(int index, bigit other, bigit& borrow) {
|
FMT_CONSTEXPR void subtract_bigits(int index, bigit other, bigit& borrow) {
|
||||||
auto result = double_bigit(bigits_[index]) - other - borrow;
|
auto result = double_bigit(bigits_[index]) - other - borrow;
|
||||||
|
Reference in New Issue
Block a user