From: Cloudwalk Date: Fri, 17 Sep 2021 14:45:32 +0000 (-0400) Subject: qdefs: Change ALWAYSINLINE -> ALWAYS_INLINE X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=1e01840681f92f425aa17e1a18c7dfcf3bf80e40 qdefs: Change ALWAYSINLINE -> ALWAYS_INLINE --- diff --git a/qdefs.h b/qdefs.h index 5eed8b6f..fa501464 100644 --- a/qdefs.h +++ b/qdefs.h @@ -9,13 +9,13 @@ #define DP_FUNC_PRINTF(n) __attribute__ ((format (printf, n, n+1))) #define DP_FUNC_PURE __attribute__ ((pure)) #define DP_FUNC_NORETURN __attribute__ ((noreturn)) -#define DP_FUNC_ALWAYSINLINE inline __attribute__((always_inline)) +#define DP_FUNC_ALWAYS_INLINE inline __attribute__((always_inline)) #else #define DP_FUNC_PRINTF(n) #define DP_FUNC_PURE #define DP_FUNC_NORETURN # if defined (_MSC_VER) -# define DP_FUNC_ALWAYSINLINE __forceinline +# define DP_FUNC_ALWAYS_INLINE __forceinline # else # define DP_FUNC_ALWAYS_INLINE inline # endif