__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:
ReactOS Portable Systems Group 2009-07-11 11:42:29 +00:00
parent c3ca589de0
commit 9a787312ff

View file

@ -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