mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
normalise macro formatting
This commit is contained in:
@@ -6,11 +6,11 @@
|
|||||||
#define CLAMP(X, A, B) (MIN(MAX((X), (A)), (B)))
|
#define CLAMP(X, A, B) (MIN(MAX((X), (A)), (B)))
|
||||||
|
|
||||||
#if ( defined( __GNUC__ ) && ( __GNUC__ >= 4 ) ) || defined( __clang__ )
|
#if ( defined( __GNUC__ ) && ( __GNUC__ >= 4 ) ) || defined( __clang__ )
|
||||||
#define FORCE_INLINE inline __attribute__((always_inline))
|
# define FORCE_INLINE inline __attribute__((always_inline))
|
||||||
#elif defined( _MSC_VER )
|
#elif defined( _MSC_VER )
|
||||||
#define FORCE_INLINE __forceinline
|
# define FORCE_INLINE __forceinline
|
||||||
#else
|
#else
|
||||||
#define FORCE_INLINE inline
|
# define FORCE_INLINE inline
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif//COMMON_UTIL_H
|
#endif//COMMON_UTIL_H
|
||||||
|
|||||||
Reference in New Issue
Block a user