NOMINMAX fix after removal of some classes

https://dev.vatsim-germany.org/boards/22/topics/1417?r=1440#message-1440
This commit is contained in:
Klaus Basan
2014-01-19 00:23:23 +01:00
parent cb112c6ddb
commit 1129891532
2 changed files with 7 additions and 2 deletions

View File

@@ -14,7 +14,10 @@
#include <QSet>
#include <QString>
#if defined(Q_OS_WIN)
#ifdef Q_OS_WIN
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <Windows.h>
#endif

View File

@@ -8,8 +8,10 @@
#include <QCoreApplication>
#include <stdexcept>
#ifdef Q_OS_WIN
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <Windows.h>
#endif