From 1f0e2819e0deb5c14ac718a26117afacbc6808fe Mon Sep 17 00:00:00 2001 From: IRainman Date: Tue, 21 Oct 2025 22:40:41 +0300 Subject: [PATCH] # type usage fix. --- include/fast_float/parse_number.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fast_float/parse_number.h b/include/fast_float/parse_number.h index e527dad..c8e465e 100644 --- a/include/fast_float/parse_number.h +++ b/include/fast_float/parse_number.h @@ -414,10 +414,10 @@ FASTFLOAT_CONSTEXPR20 int const decimal_exponent) noexcept { #ifdef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN FASTFLOAT_ASSUME(mantissa > 0); - const uint64_t m = static_cast(mantissa); + const am_mant_t m = static_cast(mantissa); #else const bool is_negative = mantissa < 0; - const uint64_t m = static_cast(is_negative ? -mantissa : mantissa); + const am_mant_t m = static_cast(is_negative ? -mantissa : mantissa); #endif T value; if (clinger_fast_path_impl(m, decimal_exponent,