From 3288e56b34aa7a4e731a9b574bb20611fb6c0c4a Mon Sep 17 00:00:00 2001 From: IRainman Date: Tue, 21 Oct 2025 18:18:20 +0300 Subject: [PATCH] # compilation fix after merge --- include/fast_float/parse_number.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/parse_number.h b/include/fast_float/parse_number.h index 0d2e221..027a723 100644 --- a/include/fast_float/parse_number.h +++ b/include/fast_float/parse_number.h @@ -418,7 +418,7 @@ FASTFLOAT_CONSTEXPR20 const bool is_negative = mantissa < 0; const uint64_t m = static_cast(is_negative ? -mantissa : mantissa); #endif - double value; + T value; if (clinger_fast_path_impl(m, decimal_exponent, #ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN is_negative,