From dbce8e5c296524439bf1e01fe21c7a877172ae64 Mon Sep 17 00:00:00 2001 From: a dinosaur Date: Tue, 21 Mar 2023 14:28:36 +1100 Subject: [PATCH] normalise macro formatting --- common/util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/util.h b/common/util.h index 8eff871..01616aa 100644 --- a/common/util.h +++ b/common/util.h @@ -6,11 +6,11 @@ #define CLAMP(X, A, B) (MIN(MAX((X), (A)), (B))) #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 ) - #define FORCE_INLINE __forceinline +# define FORCE_INLINE __forceinline #else - #define FORCE_INLINE inline +# define FORCE_INLINE inline #endif #endif//COMMON_UTIL_H