From 409d6215b4641547ab9765eaccde3cf5075b3482 Mon Sep 17 00:00:00 2001 From: Raine 'Gravecat' Simmons Date: Sat, 22 Nov 2025 16:11:06 +0000 Subject: [PATCH] Fixes compilation on GCC/MinGW --- 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 1316be3..8605e90 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -407,7 +407,7 @@ full_multiplication(uint64_t a, uint64_t b) { answer.high = __umulh(a, b); answer.low = a * b; #elif defined(FASTFLOAT_32BIT) || \ - (defined(_WIN64) && !defined(__clang__) && !defined(_M_ARM64)) + (defined(_WIN64) && !defined(__clang__) && !defined(_M_ARM64) && !defined(__GNUC__)) answer.low = _umul128(a, b, &answer.high); // _umul128 not available on ARM64 #elif defined(FASTFLOAT_64BIT) && defined(__SIZEOF_INT128__) __uint128_t r = ((__uint128_t)a) * b;