Include intrin.h header when using MSVC

Fixes the build with MSVC15

Change-Id: I7f22938583775bb3f0767d50cf59a43cab95eede
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
This commit is contained in:
Jesus Fernandez 2016-11-01 11:35:02 +01:00
parent 99cebe717c
commit dcedce51a6

View File

@ -36,6 +36,10 @@
#include <QtCore/qglobal.h>
#if defined(Q_CC_MSVC) && _MSC_VER > 1500
#include <intrin.h>
#endif
QT_BEGIN_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wdeprecated-declarations")