fix last merge

This commit is contained in:
Irlan 2017-04-07 11:06:10 -03:00
parent a6f45f9e22
commit 005d2bc117

View File

@ -116,11 +116,11 @@ typedef float float32;
#define B3_MiB(n) (1024 * B3_KiB(n))
#define B3_GiB(n) (1024 * B3_MiB(n))
#ifndef _MSC_VER
#ifdef __cplusplus
#define B3_FORCE_INLINE inline
#ifndef B3_FORCE_INLINE
# if defined(_MSC_VER) && (_MSC_VER >= 1200)
# define B3_FORCE_INLINE __forceinline
# else
#define B3_FORCE_INLINE
# define B3_FORCE_INLINE __inline
# endif
#endif