Skip to content

Commit c9f8339

Browse files
committed
Fix the formatting and remove the previous condition
1 parent 2609d5f commit c9f8339

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

include/fast_float/float_common.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,8 @@ full_multiplication(uint64_t a, uint64_t b) {
343343
// But MinGW on ARM64 doesn't have native support for 64-bit multiplications
344344
answer.high = __umulh(a, b);
345345
answer.low = a * b;
346-
#elif defined(FASTFLOAT_32BIT) || (defined(_WIN64) && !defined(__clang__))
347-
#elif defined(FASTFLOAT_32BIT) || (defined(_WIN64) && !defined(__clang__) \
348-
&& !defined(_M_ARM64))
346+
#elif defined(FASTFLOAT_32BIT) || \
347+
(defined(_WIN64) && !defined(__clang__) && !defined(_M_ARM64))
349348
answer.low = _umul128(a, b, &answer.high); // _umul128 not available on ARM64
350349
#elif defined(FASTFLOAT_64BIT) && defined(__SIZEOF_INT128__)
351350
__uint128_t r = ((__uint128_t)a) * b;

0 commit comments

Comments
 (0)