From 7572bf1831fadcab06292a689b5ff44f444e9870 Mon Sep 17 00:00:00 2001 From: Greg Sjaardema Date: Wed, 20 Sep 2023 12:29:50 -0600 Subject: [PATCH] Fix incorrect function name. --- 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 40c95abf..b2635007 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_threshold(int index) { +FMT_CONSTEXPR 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.