Added Q_CC_MSVC
--HG-- branch : feature
This commit is contained in:
parent
36f0e1dc44
commit
dd9fecb89f
|
@ -31,7 +31,6 @@
|
|||
|
||||
#include <QtGlobal>
|
||||
#include "../vmisc/def.h"
|
||||
#include <ciso646> //for msvc
|
||||
|
||||
extern const QString CustomMSign;
|
||||
extern const QString CustomIncrSign;
|
||||
|
|
|
@ -30,7 +30,10 @@
|
|||
#define DXFDEF_H
|
||||
|
||||
#include <QtGlobal>
|
||||
#include <ciso646> //for msvc
|
||||
|
||||
#ifdef Q_CC_MSVC
|
||||
#include <ciso646>
|
||||
#endif /* Q_CC_MSVC */
|
||||
|
||||
enum class VarMeasurement : unsigned char { English=0, Metric=1 };
|
||||
|
||||
|
|
|
@ -29,7 +29,9 @@
|
|||
#ifndef VLAYOUTDEF_H
|
||||
#define VLAYOUTDEF_H
|
||||
|
||||
#include <ciso646> //for msvc
|
||||
#ifdef Q_CC_MSVC
|
||||
#include <ciso646>
|
||||
#endif /* Q_CC_MSVC */
|
||||
|
||||
enum class EquidistantType : char { OpenEquidistant, CloseEquidistant };
|
||||
|
||||
|
|
|
@ -37,7 +37,10 @@
|
|||
#endif /* Q_OS_WIN */
|
||||
|
||||
#include "debugbreak.h"
|
||||
#include <ciso646> //for msvc
|
||||
|
||||
#ifdef Q_CC_MSVC
|
||||
#include <ciso646>
|
||||
#endif /* Q_CC_MSVC */
|
||||
|
||||
class QComboBox;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user