diff --git a/src/runtime/stack.c b/src/runtime/stack.c index 2883d0e8..4701c29c 100644 --- a/src/runtime/stack.c +++ b/src/runtime/stack.c @@ -12,11 +12,7 @@ #define STARTING_TREE_CAPACITY 10 #define MAX_NODE_POOL_SIZE 50 -#if __has_attribute(always_inline) #define ALWAYS_INLINE __attribute__((always_inline)) -#else -#define ALWAYS_INLINE -#endif typedef struct StackNode StackNode;