diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index fd0ee35..f4d71d1 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -634,8 +634,8 @@ fastfloat_really_inline constexpr uint64_t emulu_generic(uint32_t x, return x * static_cast(y); } -fastfloat_really_inline uint64_t umul128_generic(uint64_t ab, uint64_t cd, - uint64_t &hi) noexcept { +fastfloat_really_inline constexpr uint64_t +umul128_generic(uint64_t ab, uint64_t cd, uint64_t &hi) noexcept { auto ab_shifted = static_cast(ab >> 32); auto cd_shifted = static_cast(cd >> 32);