From 71e05ace6d35c1ebadc1e2d4b751b64afbdf20da Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Mon, 28 Jan 2013 19:21:29 +0000 Subject: [PATCH] [INCLUDE:WINE] - Fix host-tools build with clang svn path=/trunk/; revision=58248 --- reactos/include/reactos/wine/list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/reactos/wine/list.h b/reactos/include/reactos/wine/list.h index 0f8613ac694..0cbbdc68845 100644 --- a/reactos/include/reactos/wine/list.h +++ b/reactos/include/reactos/wine/list.h @@ -24,7 +24,7 @@ #ifdef __cplusplus #define __WINE_SERVER_LIST_INLINE inline #else -#if defined(__GNUC__) +#if defined(__GNUC__) && !defined(__clang__) #define __WINE_SERVER_LIST_INLINE extern __inline__ __attribute__((__always_inline__)) #elif defined(_MSC_VER) #define __WINE_SERVER_LIST_INLINE __inline -- 2.17.1