From 1b5e3f3945a5e2839252675d79728a5325023e19 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Mon, 16 Nov 2020 12:56:57 -0500 Subject: [PATCH] patching be support. (typo) --- include/fast_float/float_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index a208741..60e5f6e 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -183,6 +183,7 @@ struct decimal { // initialized to zero when there are fewer than 19. inline uint64_t to_truncated_mantissa() { #if FASTFLOAT_IS_BIG_ENDIAN == 1 + uint64_t mantissa = 0; for (uint32_t i = 0; i < max_digit_without_overflow; i++) { mantissa = mantissa * 10 + digits[i]; // can be accelerated