diff --git a/include/fmt/format.h b/include/fmt/format.h index 4ad1effd5132..52af87b8b146 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -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;