From f4f3c915011acc6df817f698ca13497d57ce8add Mon Sep 17 00:00:00 2001 From: Kim Walisch Date: Fri, 21 Jun 2024 14:08:53 +0200 Subject: [PATCH] Update ALWAYS_INLINE fallback macro --- include/macros.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/macros.hpp b/include/macros.hpp index 9de82e5f..b7498e5b 100644 --- a/include/macros.hpp +++ b/include/macros.hpp @@ -50,7 +50,7 @@ #elif defined(_MSC_VER) #define ALWAYS_INLINE __forceinline #else - #define ALWAYS_INLINE + #define ALWAYS_INLINE inline #endif #if __has_attribute(noinline)