mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +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
|
#ifdef __cplusplus
|
||||||
#define __WINE_SERVER_LIST_INLINE inline
|
#define __WINE_SERVER_LIST_INLINE inline
|
||||||
#else
|
#else
|
||||||
#if defined(__GNUC__) && !defined(__clang__)
|
#if defined(__GNUC__)
|
||||||
#define __WINE_SERVER_LIST_INLINE extern __inline__ __attribute__((__always_inline__))
|
#define __WINE_SERVER_LIST_INLINE extern __inline__ __attribute__((__always_inline__,__gnu_inline__))
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
#define __WINE_SERVER_LIST_INLINE __inline
|
#define __WINE_SERVER_LIST_INLINE __inline
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue