From 5594edaf6790996a05515f3ff2f627daa312e2e5 Mon Sep 17 00:00:00 2001 From: jk-jeon <33922675+jk-jeon@users.noreply.github.com> Date: Sun, 13 Feb 2022 20:14:28 -0800 Subject: [PATCH] Address https://github.com/fmtlib/fmt/issues/2763 (#2765) --- 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}};