mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
[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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user