mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +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)
|
||||
#define INLINE
|
||||
#else
|
||||
#ifdef _MSC_VER
|
||||
#define INLINE __forceinline
|
||||
#else
|
||||
#define INLINE inline __attribute__((always_inline))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* COMMON_H_ */
|
||||
|
|
Loading…
Reference in a new issue