From 3d4da2331dbb2cbb10a8e17fc8bea1414e59be5b Mon Sep 17 00:00:00 2001 From: Francesco Cavaliere <32930037+c4v4@users.noreply.github.com> Date: Thu, 3 Oct 2024 12:58:45 +0000 Subject: [PATCH] Silencing Wextra-semi warning --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;