(retro_inline.h) Fix backwards compatibility with older mingw versions
This commit is contained in:
parent
5b11e290dd
commit
93de657952
|
@ -25,8 +25,8 @@
|
|||
|
||||
#ifndef INLINE
|
||||
|
||||
#if !defined(__cplusplus) && defined(_WIN32)
|
||||
#define INLINE _inline
|
||||
#if defined(_WIN32)
|
||||
#define INLINE __inline
|
||||
#elif defined(__STDC_VERSION__) && __STDC_VERSION__>=199901L
|
||||
#define INLINE inline
|
||||
#elif defined(__GNUC__)
|
||||
|
|
Loading…
Reference in New Issue