Fixed MSVC build (access the not operator)

--HG--
branch : feature
This commit is contained in:
Valentina Zhuravska 2015-10-21 16:17:05 +03:00
parent a700fe8d64
commit b877c49f61
4 changed files with 5 additions and 0 deletions

View File

@ -31,6 +31,7 @@
#include <QtGlobal> #include <QtGlobal>
#include "../vmisc/def.h" #include "../vmisc/def.h"
#include <ciso646> //for msvc
extern const QString CustomMSign; extern const QString CustomMSign;
extern const QString CustomIncrSign; extern const QString CustomIncrSign;

View File

@ -30,6 +30,7 @@
#define DXFDEF_H #define DXFDEF_H
#include <QtGlobal> #include <QtGlobal>
#include <ciso646> //for msvc
enum class VarMeasurement : unsigned char { English=0, Metric=1 }; enum class VarMeasurement : unsigned char { English=0, Metric=1 };

View File

@ -29,6 +29,8 @@
#ifndef VLAYOUTDEF_H #ifndef VLAYOUTDEF_H
#define VLAYOUTDEF_H #define VLAYOUTDEF_H
#include <ciso646> //for msvc
enum class EquidistantType : char { OpenEquidistant, CloseEquidistant }; enum class EquidistantType : char { OpenEquidistant, CloseEquidistant };
enum class LayoutErrors : char enum class LayoutErrors : char

View File

@ -37,6 +37,7 @@
#endif /* Q_OS_WIN */ #endif /* Q_OS_WIN */
#include "debugbreak.h" #include "debugbreak.h"
#include <ciso646> //for msvc
class QComboBox; class QComboBox;