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.
This commit is contained in:
Myles Busig 2024-07-27 18:17:42 -06:00
parent cbf82e2b73
commit 017a88c966

View File

@ -5,7 +5,7 @@
#endif
#define NOINLINE [[gnu::noinline]]
#define ALWAYS_INLINE [[gnu::always_inline]] inline
#define ALWAYS_INLINE [[gnu::always_inline]]
#ifdef __arm__