Skip to content

Commit 1b5e3f3

Browse files
committed
patching be support. (typo)
1 parent 7ebbb9d commit 1b5e3f3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/fast_float/float_common.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ struct decimal {
183183
// initialized to zero when there are fewer than 19.
184184
inline uint64_t to_truncated_mantissa() {
185185
#if FASTFLOAT_IS_BIG_ENDIAN == 1
186+
uint64_t mantissa = 0;
186187
for (uint32_t i = 0; i < max_digit_without_overflow;
187188
i++) {
188189
mantissa = mantissa * 10 + digits[i]; // can be accelerated

0 commit comments

Comments
 (0)