summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Varga <pvarga@inf.u-szeged.hu>2013-04-08 10:27:56 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-12 16:58:09 +0200
commitfa99cb39a8735a01b32ef9ae476f101797f1eaff (patch)
tree91e04f91dbca00ba81dfce4d4b73e753dace8a21
parent799032e50998220cc0645a565e3d596b5899c5e0 (diff)
[V8] Fix MinGW build after V8 update
Change-Id: I54ea27903e52a629953b7b3a007d78588ffab415 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
-rw-r--r--src/3rdparty/v8/include/v8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/v8/include/v8.h b/src/3rdparty/v8/include/v8.h
index ce62c69..2ad95c5 100644
--- a/src/3rdparty/v8/include/v8.h
+++ b/src/3rdparty/v8/include/v8.h
@@ -81,7 +81,7 @@
#endif // _WIN32
-#if defined(__GNUC__) && !defined(DEBUG)
+#if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__MINGW64__) && !defined(DEBUG)
#define V8_INLINE(declarator) inline __attribute__((always_inline)) declarator
#elif defined(_MSC_VER) && !defined(DEBUG)
#define V8_INLINE(declarator) __forceinline declarator