From c30a55249244a59e841c188774b3fb23d9625f14 Mon Sep 17 00:00:00 2001 From: Junekey Jeon Date: Sun, 13 Feb 2022 13:04:36 -0800 Subject: [PATCH] Address https://github.com/fmtlib/fmt/issues/2763 --- include/fmt/format-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index c4e03041..c20d328f 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -920,7 +920,7 @@ inline int floor_log10_pow2_minus_log10_4_over_3(int e) noexcept { } static constexpr struct { - int divisor; + uint32_t divisor; int shift_amount; } div_small_pow10_infos[] = {{10, 16}, {100, 16}};