From d0c7def24d81a0cad2f5e3b473050a19c6c686c1 Mon Sep 17 00:00:00 2001 From: IRainman Date: Sun, 9 Nov 2025 16:38:57 +0300 Subject: [PATCH] * try to fix error on x86 platform step2. --- include/fast_float/float_common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 2801437..ce68bd4 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -179,7 +179,8 @@ using parse_options = parse_options_t; #if defined(__SSE2__) || (defined(FASTFLOAT_VISUAL_STUDIO) && \ (defined(_M_AMD64) || defined(_M_X64) || \ (defined(_M_IX86_FP) && _M_IX86_FP == 2))) -#define FASTFLOAT_SSE2 1 +// try to fix error on x86 platform: disable SSE2 code +//#define FASTFLOAT_SSE2 1 #endif #if defined(__aarch64__) || defined(_M_ARM64)