fix miniz inlining

This commit is contained in:
Dane Springmeyer 2014-06-12 06:52:13 -07:00
parent ce948e20e7
commit fa3971b99f

View file

@ -928,9 +928,9 @@ typedef unsigned char mz_validate_uint64[sizeof(mz_uint64)==8 ? 1 : -1];
#ifdef _MSC_VER
#define MZ_FORCEINLINE __forceinline
#elif defined(__GNUC__)
#define MZ_FORCEINLINE __attribute__((__always_inline__))
#define MZ_FORCEINLINE inline __attribute__((__always_inline__))
#else
#define MZ_FORCEINLINE
#define MZ_FORCEINLINE inline
#endif
#ifdef __cplusplus