From 6c175c5a14bea9508265af2b66a18888f90412f5 Mon Sep 17 00:00:00 2001 From: IRainman Date: Wed, 22 Oct 2025 02:31:52 +0300 Subject: [PATCH] # format --- include/fast_float/parse_number.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fast_float/parse_number.h b/include/fast_float/parse_number.h index c8e465e..e69f7ba 100644 --- a/include/fast_float/parse_number.h +++ b/include/fast_float/parse_number.h @@ -417,7 +417,8 @@ FASTFLOAT_CONSTEXPR20 const am_mant_t m = static_cast(mantissa); #else const bool is_negative = mantissa < 0; - const am_mant_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,