mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 16:56:57 +08:00
# compilation fix after merge
This commit is contained in:
parent
240d393bf6
commit
3288e56b34
@ -418,7 +418,7 @@ FASTFLOAT_CONSTEXPR20
|
|||||||
const bool is_negative = mantissa < 0;
|
const bool is_negative = mantissa < 0;
|
||||||
const uint64_t m = static_cast<uint64_t>(is_negative ? -mantissa : mantissa);
|
const uint64_t m = static_cast<uint64_t>(is_negative ? -mantissa : mantissa);
|
||||||
#endif
|
#endif
|
||||||
double value;
|
T value;
|
||||||
if (clinger_fast_path_impl(m, decimal_exponent,
|
if (clinger_fast_path_impl(m, decimal_exponent,
|
||||||
#ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN
|
#ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN
|
||||||
is_negative,
|
is_negative,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user