diff --git a/src/runtime/stack.c b/src/runtime/stack.c index 4293292e..ce5f9a6d 100644 --- a/src/runtime/stack.c +++ b/src/runtime/stack.c @@ -10,7 +10,11 @@ #define MAX_NODE_POOL_SIZE 50 #define MAX_ITERATOR_COUNT 64 +#ifdef _WIN32 +#define inline __forceinline +#else #define inline static inline __attribute__((always_inline)) +#endif typedef struct StackNode StackNode;