Fix MinGW warnings

This commit is contained in:
Roland Winklmeier
2016-02-12 10:25:21 +01:00
parent 1ea2f34f75
commit 5670ba925a

View File

@@ -11,12 +11,15 @@
#include <QMutex>
#include <QStringBuilder>
#include <array>
#if defined(Q_OS_WIN32)
#if defined(Q_CC_MSVC)
# include <windows.h>
# pragma warning(push)
# pragma warning(disable:4091)
# include <dbghelp.h>
# pragma warning(pop)
#elif defined(Q_OS_WIN) && defined (Q_CC_GNU)
# include <windows.h>
# include <dbghelp.h>
#elif defined(Q_CC_GNU)
# include <execinfo.h>
# include <cxxabi.h>