From 9d78a01ff7addc33e9fc7a3186c350e6b1165e1d Mon Sep 17 00:00:00 2001 From: Raine 'Gravecat' Simmons Date: Sat, 22 Nov 2025 21:53:37 +0000 Subject: [PATCH] Fixed formatting with clang-format --- include/fast_float/float_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 8605e90..18484a6 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -406,8 +406,8 @@ full_multiplication(uint64_t a, uint64_t b) { // But MinGW on ARM64 doesn't have native support for 64-bit multiplications answer.high = __umulh(a, b); answer.low = a * b; -#elif defined(FASTFLOAT_32BIT) || \ - (defined(_WIN64) && !defined(__clang__) && !defined(_M_ARM64) && !defined(__GNUC__)) +#elif defined(FASTFLOAT_32BIT) || (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;