mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 16:56:57 +08:00
# format
This commit is contained in:
parent
57f63fc327
commit
6c175c5a14
@ -417,7 +417,8 @@ FASTFLOAT_CONSTEXPR20
|
||||
const am_mant_t m = static_cast<am_mant_t>(mantissa);
|
||||
#else
|
||||
const bool is_negative = mantissa < 0;
|
||||
const am_mant_t m = static_cast<am_mant_t>(is_negative ? -mantissa : mantissa);
|
||||
const am_mant_t m =
|
||||
static_cast<am_mant_t>(is_negative ? -mantissa : mantissa);
|
||||
#endif
|
||||
T value;
|
||||
if (clinger_fast_path_impl(m, decimal_exponent,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user