diff options
author | Andreas Kling <andreas.kling@nokia.com> | 2010-06-09 18:24:17 (GMT) |
---|---|---|
committer | Andreas Kling <andreas.kling@nokia.com> | 2010-06-09 18:24:17 (GMT) |
commit | e6f601ce80726bf2d5c2fdb1b87a62b563cb471b (patch) | |
tree | 98946d687b463daf8181876a4f76266d67e446f0 | |
parent | 5d894878eaf73f884b8d5f59adb7b86f2359c1ed (diff) | |
download | Qt-e6f601ce80726bf2d5c2fdb1b87a62b563cb471b.zip Qt-e6f601ce80726bf2d5c2fdb1b87a62b563cb471b.tar.gz Qt-e6f601ce80726bf2d5c2fdb1b87a62b563cb471b.tar.bz2 |
Attempt to fix build failure on Linux introduced by 09c6a81109
-rw-r--r-- | src/corelib/global/qendian.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/corelib/global/qendian.h b/src/corelib/global/qendian.h index 01550cf..d867738 100644 --- a/src/corelib/global/qendian.h +++ b/src/corelib/global/qendian.h @@ -42,8 +42,9 @@ #ifndef QENDIAN_H #define QENDIAN_H +#include <QtCore/qglobal.h> + #ifdef Q_OS_LINUX -# include <qglobal.h> QT_BEGIN_INCLUDE_NAMESPACE # include <features.h> QT_END_INCLUDE_NAMESPACE @@ -53,8 +54,6 @@ QT_END_INCLUDE_NAMESPACE #include <byteswap.h> #endif -#include <QtCore/qglobal.h> - QT_BEGIN_HEADER QT_BEGIN_NAMESPACE |