Index: src/globals.h |
diff --git a/src/globals.h b/src/globals.h |
index 25d4ffe89bd98ec68d070cd00269941b41609f17..97b033f8489ce4259286beec06fa39c776a65078 100644 |
--- a/src/globals.h |
+++ b/src/globals.h |
@@ -345,6 +345,9 @@ F FUNCTION_CAST(Address addr) { |
#define INLINE(header) inline __attribute__((always_inline)) header |
#define NO_INLINE(header) __attribute__((noinline)) header |
#endif |
+#elif defined(_MSC_VER) && !defined(DEBUG) |
+#define INLINE(header) __forceinline header |
+#define NO_INLINE(header) header |
#else |
#define INLINE(header) inline header |
#define NO_INLINE(header) header |