From 1d82fd4903f389f319f6d07dca08687874ee0e57 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 15 Feb 2023 17:53:15 +0100 Subject: [PATCH] Add 'FORCENOINLINE' macro --- r5dev/tier0/platform.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/r5dev/tier0/platform.h b/r5dev/tier0/platform.h index 1353f240..65de0ac3 100644 --- a/r5dev/tier0/platform.h +++ b/r5dev/tier0/platform.h @@ -476,6 +476,8 @@ inline int64 CastPtrToInt64(const void* p) #define FORCEINLINE_TEMPLATE __forceinline #define NULLTERMINATED __nullterminated +#define FORCENOINLINE __declspec(noinline) + // This can be used to ensure the size of pointers to members when declaring // a pointer type for a class that has only been forward declared #define SINGLE_INHERITANCE __single_inheritance