From 18792893d8f1befaa7614a02f5a49e50f62f22c1 Mon Sep 17 00:00:00 2001 From: Francesco Cavaliere <32930037+c4v4@users.noreply.github.com> Date: Thu, 3 Oct 2024 18:00:55 +0200 Subject: [PATCH] Silencing Wextra-semi warning (#4188) --- 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;