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,