fix for integer_times_pow10.

This commit is contained in:
IRainman 2026-01-14 12:53:48 +03:00
parent c3a14e6a64
commit 8ac483a56b

View File

@ -432,8 +432,7 @@ FASTFLOAT_CONSTEXPR20
value)) value))
return value; return value;
adjusted_mantissa const am = adjusted_mantissa const am = compute_float<binary_format<T>>(exponent, m);
compute_float<binary_format<double>>(exponent, m);
to_float( to_float(
#ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN #ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN