From be707970da333157b1943570c5dc049d14663ec9 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 10 Mar 2016 12:11:49 -0800 Subject: [PATCH] Fix always_inline attribute usage --- src/runtime/stack.c | 4 ---- 1 file changed, 4 deletions(-) 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;