mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 01:35:07 +00:00
fix Microsoft C compiler build... again
This commit is contained in:
parent
cba4385607
commit
d73c0512eb
1 changed files with 4 additions and 0 deletions
|
@ -70,7 +70,11 @@ enum database_mode {
|
||||||
#if defined (DEBUG)
|
#if defined (DEBUG)
|
||||||
#define INLINE
|
#define INLINE
|
||||||
#else
|
#else
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define INLINE __forceinline
|
||||||
|
#else
|
||||||
#define INLINE inline __attribute__((always_inline))
|
#define INLINE inline __attribute__((always_inline))
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* COMMON_H_ */
|
#endif /* COMMON_H_ */
|
||||||
|
|
Loading…
Reference in a new issue