mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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:
parent
8f51422b28
commit
4810b26797
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue