Changed macros to be sure that <sys/sysmacros.h> is not included on Windows.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-08-08 17:57:05 +03:00
parent 67360605b3
commit 6c04438a02

View file

@ -29,11 +29,12 @@
#ifndef VABSTRACTCONVERTER_H
#define VABSTRACTCONVERTER_H
#if defined(__GNUC__) && !defined(__APPLE__) && !defined(WIN32)
#include <qcompilerdetection.h>
#if !defined(Q_OS_OSX) && !defined(Q_OS_WIN) && defined(Q_CC_GNU)
#include <sys/sysmacros.h>
#endif
#include <qcompilerdetection.h>
#include <QCoreApplication>
#include <QString>
#include <QtGlobal>