From 45a169003248c1ee14704f91d50e48d597ee9166 Mon Sep 17 00:00:00 2001 From: Madeline Busig Date: Sat, 27 Jul 2024 18:17:42 -0600 Subject: [PATCH] Remove implicit inline attribute from ALWAYS_INLINE target option May cause issues when multiple non-standard attributes are used. Standard attributes must come before all non-standard attributes. --- include/mtl/target.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mtl/target.hpp b/include/mtl/target.hpp index 9a186df..6bce946 100644 --- a/include/mtl/target.hpp +++ b/include/mtl/target.hpp @@ -5,7 +5,7 @@ #endif #define NOINLINE [[gnu::noinline]] -#define ALWAYS_INLINE [[gnu::always_inline]] inline +#define ALWAYS_INLINE [[gnu::always_inline]] #ifdef __arm__