Skip to content

Commit

Permalink
Silencing Wextra-semi warning (fmtlib#4188)
Browse files Browse the repository at this point in the history
  • Loading branch information
c4v4 authored Oct 3, 2024
1 parent c90bc91 commit 1879289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1879289

Please sign in to comment.