From ca723d699b01f880a75f769392bc541aa7fa5f0a Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 28 Aug 2020 21:22:14 +1000 Subject: [PATCH] Make ALWAYS_INLINE_RELEASE specify inline in debug too Stops us needing the static qualifier as well. --- src/common/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/types.h b/src/common/types.h index 6b94fd87f..839b585e7 100644 --- a/src/common/types.h +++ b/src/common/types.h @@ -17,7 +17,7 @@ // Force inline in non-debug helper #ifdef _DEBUG -#define ALWAYS_INLINE_RELEASE +#define ALWAYS_INLINE_RELEASE inline #else #define ALWAYS_INLINE_RELEASE ALWAYS_INLINE #endif