From 2d38d8a639bbc2a618de6d592e366726fddb74f0 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 3 Nov 2020 04:12:29 +0300 Subject: [PATCH] Fix NEVER_INLINE attribute Similarly to FORCE_INLINE, it doesn't imply inline on some compilers. --- Utilities/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/types.h b/Utilities/types.h index cd99e4cb1a..b79d0cb42a 100644 --- a/Utilities/types.h +++ b/Utilities/types.h @@ -49,7 +49,7 @@ #endif #define SAFE_BUFFERS __attribute__((no_stack_protector)) -#define NEVER_INLINE __attribute__((noinline)) +#define NEVER_INLINE __attribute__((noinline)) inline #define FORCE_INLINE __attribute__((always_inline)) inline #define RESTRICT __restrict__