Skip to content

Commit d4076e1

Browse files
authored
build: fix __int128_t redefinition with Clang on MSYS2 (#2251)
1 parent 98a05e4 commit d4076e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qemu/include/qemu/int128.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ static inline Int128 bswap128(Int128 a)
146146
#else /* !CONFIG_INT128 */
147147

148148
typedef struct Int128 Int128;
149-
#if !(defined(_MSC_VER) && defined(__clang__))
149+
#if !defined(__clang__)
150150
typedef Int128 __int128_t;
151151
#endif
152152

0 commit comments

Comments
 (0)