From 8e60c51da00e960b950d23d572e5217fe74545ba Mon Sep 17 00:00:00 2001 From: Greg Sjaardema Date: Wed, 20 Sep 2023 12:32:19 -0600 Subject: [PATCH] Add missing inline... --- 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 b2635007..30addcb7 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3258,7 +3258,7 @@ FMT_CONSTEXPR20 void format_hexfloat(Float value, int precision, format_hexfloat(static_cast(value), precision, specs, buf); } -FMT_CONSTEXPR uint32_t fractional_part_rounding_thresholds(int index) { +FMT_CONSTEXPR inline uint32_t fractional_part_rounding_thresholds(int index) { // For checking rounding thresholds. // The kth entry is chosen to be the smallest integer such that the // upper 32-bits of 10^(k+1) times it is strictly bigger than 5 * 10^k.