We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebbb9d commit 1b5e3f3Copy full SHA for 1b5e3f3
include/fast_float/float_common.h
@@ -183,6 +183,7 @@ struct decimal {
183
// initialized to zero when there are fewer than 19.
184
inline uint64_t to_truncated_mantissa() {
185
#if FASTFLOAT_IS_BIG_ENDIAN == 1
186
+ uint64_t mantissa = 0;
187
for (uint32_t i = 0; i < max_digit_without_overflow;
188
i++) {
189
mantissa = mantissa * 10 + digits[i]; // can be accelerated
0 commit comments