mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-21 18:20:04 +00:00
Silencing Wextra-semi warning (#4188)
This commit is contained in:
parent
c90bc91862
commit
18792893d8
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user