From 017a88c966649e52d6f3e4e0e05a73c98907cacb Mon Sep 17 00:00:00 2001 From: Myles 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__