From 93a2c79cf2e7d283fef5bc4bf7c38e4e1a16b6db Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Mon, 7 Jun 2021 10:27:52 -0400 Subject: [PATCH] Adding m_arm detection. --- include/fast_float/float_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index d949b6d..98f4bba 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -13,7 +13,7 @@ || defined(__EMSCRIPTEN__)) #define FASTFLOAT_64BIT #elif (defined(__i386) || defined(__i386__) || defined(_M_IX86) \ - || defined(__arm__) \ + || defined(__arm__) || || defined(_M_ARM) \ || defined(__MINGW32__)) #define FASTFLOAT_32BIT #else