From dc402d78ecc8f203a99a25627ac4046b23feef45 Mon Sep 17 00:00:00 2001 From: mio Date: Thu, 30 Dec 2021 00:28:24 +0100 Subject: [PATCH] Ignore QEMU_BUILD_BUG_MSG on MSVC --- qemu/include/qemu/compiler.h | 1 + 1 file changed, 1 insertion(+) diff --git a/qemu/include/qemu/compiler.h b/qemu/include/qemu/compiler.h index 66341749..971aa127 100644 --- a/qemu/include/qemu/compiler.h +++ b/qemu/include/qemu/compiler.h @@ -77,6 +77,7 @@ static union MSVC_FLOAT_HACK __NAN = {{0x00, 0x00, 0xC0, 0x7F}}; #define cat2(x,y) cat(x,y) #define QEMU_BUILD_BUG_ON(x) #define QEMU_BUILD_BUG_ON_ZERO(x) +#define QEMU_BUILD_BUG_MSG(x, msg) #define GCC_FMT_ATTR(n, m)