diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h index 0628b524fb0..dccbe52ab3d 100644 --- a/src/corelib/global/qglobal.h +++ b/src/corelib/global/qglobal.h @@ -46,8 +46,9 @@ # include # include #endif - -#include +#ifndef __ASSEMBLER__ +# include +#endif /* QT_VERSION is (major << 16) + (minor << 8) + patch. @@ -188,6 +189,7 @@ namespace QT_NAMESPACE {} # define QT_LARGEFILE_SUPPORT 64 #endif +#ifndef __ASSEMBLER__ QT_BEGIN_NAMESPACE /* @@ -1173,5 +1175,6 @@ QT_END_NAMESPACE #include #endif /* __cplusplus */ +#endif /* !__ASSEMBLER__ */ #endif /* QGLOBAL_H */