Don't ignore USE_INLINE on Windows

This commit is contained in:
Nicolas F 2014-05-09 20:14:46 +02:00
parent 958397ae02
commit 37bb8eec24

View File

@ -33,7 +33,8 @@
#if defined(_MSC_VER) #if defined(_MSC_VER)
#define inline __inline #define inline __inline
#elif !defined(USE_INLINE) #endif
#if !defined(USE_INLINE)
#define inline #define inline
#endif #endif