summaryrefslogtreecommitdiffhomepage
path: root/compat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-03-24 17:00:52 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-03-24 17:00:52 +0100
commitb13b7d3371fc7ee026c29708ed11e875c87e2b83 (patch)
treef802827f476876061962e71e810563df781715ed /compat
parent3fe74769731ed31901a6bb486543509ce3720004 (diff)
compat/macros: actually enable always_inline
Diffstat (limited to 'compat')
-rw-r--r--compat/macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/macros.h b/compat/macros.h
index 5325d055..237bef15 100644
--- a/compat/macros.h
+++ b/compat/macros.h
@@ -9,7 +9,7 @@
#if defined _MSC_VER
# define force_inline __forceinline
#else
-# define force_inline __attribute__((always_inline))
+# define force_inline __attribute__((always_inline)) inline
#endif
#if !defined likely