fix Microsoft C compiler build... again

This commit is contained in:
tildearrow 2022-01-17 18:15:47 -05:00
parent cba4385607
commit d73c0512eb
1 changed files with 4 additions and 0 deletions

View File

@ -70,7 +70,11 @@ enum database_mode {
#if defined (DEBUG)
#define INLINE
#else
#ifdef _MSC_VER
#define INLINE __forceinline
#else
#define INLINE inline __attribute__((always_inline))
#endif
#endif
#endif /* COMMON_H_ */