mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
__gnu__inline is not supported for a long time in gcc anymore, so remove this to fix a bunch of warnings
svn path=/trunk/; revision=41862
This commit is contained in:
parent
c3ca589de0
commit
9a787312ff
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
|||
#define __WINE_SERVER_LIST_INLINE inline
|
||||
#else
|
||||
#if defined(__GNUC__)
|
||||
#define __WINE_SERVER_LIST_INLINE extern __inline__ __attribute__((__always_inline__,__gnu_inline__))
|
||||
#define __WINE_SERVER_LIST_INLINE extern __inline__ __attribute__((__always_inline__))
|
||||
#elif defined(_MSC_VER)
|
||||
#define __WINE_SERVER_LIST_INLINE __inline
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue