Author: akhaldi Date: Tue Sep 9 17:25:25 2014 New Revision: 64092
URL: http://svn.reactos.org/svn/reactos?rev=64092&view=rev Log: [WINE/LIST] * Use an attribute that should work with both Clang and GCC. Brought to you by Thomas Faber. CORE-8516
Modified: trunk/reactos/include/reactos/wine/list.h
Modified: trunk/reactos/include/reactos/wine/list.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/wine/list.h... ============================================================================== --- trunk/reactos/include/reactos/wine/list.h [iso-8859-1] (original) +++ trunk/reactos/include/reactos/wine/list.h [iso-8859-1] Tue Sep 9 17:25:25 2014 @@ -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