fix last merge

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

View File

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