From 59da568ec65f1c501aa91d86c3aecb2f8ebd9665 Mon Sep 17 00:00:00 2001 From: IRainman Date: Mon, 29 Dec 2025 16:31:32 +0300 Subject: [PATCH] type usage fix. --- include/fast_float/decimal_to_binary.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/decimal_to_binary.h b/include/fast_float/decimal_to_binary.h index 1db1055..799c074 100644 --- a/include/fast_float/decimal_to_binary.h +++ b/include/fast_float/decimal_to_binary.h @@ -73,7 +73,7 @@ constexpr fastfloat_really_inline am_pow_t power(am_pow_t const q) noexcept { // for significant digits already multiplied by 10 ** q. template fastfloat_really_inline FASTFLOAT_CONSTEXPR14 adjusted_mantissa -compute_error_scaled(am_pow_t q, am_mant_t w, am_bits_t lz) noexcept { +compute_error_scaled(am_pow_t q, am_mant_t w, limb_t lz) noexcept { auto const hilz = static_cast((w >> 63) ^ 1); adjusted_mantissa answer; answer.mantissa = w << hilz;