[WINE/LIST]

* Use an attribute that should work with both Clang and GCC. Brought to you by Thomas Faber.
CORE-8516

svn path=/trunk/; revision=64092
This commit is contained in:
Amine Khaldi 2014-09-09 17:25:25 +00:00
parent 8f51422b28
commit 4810b26797

View file

@ -24,8 +24,8 @@
#ifdef __cplusplus
#define __WINE_SERVER_LIST_INLINE inline
#else
#if defined(__GNUC__) && !defined(__clang__)
#define __WINE_SERVER_LIST_INLINE extern __inline__ __attribute__((__always_inline__))
#if defined(__GNUC__)
#define __WINE_SERVER_LIST_INLINE extern __inline__ __attribute__((__always_inline__,__gnu_inline__))
#elif defined(_MSC_VER)
#define __WINE_SERVER_LIST_INLINE __inline
#else