diff --git a/src/corelib/global/qtypeinfo.h b/src/corelib/global/qtypeinfo.h index 04b918f421..f3382ea17e 100644 --- a/src/corelib/global/qtypeinfo.h +++ b/src/corelib/global/qtypeinfo.h @@ -117,9 +117,8 @@ public: }; #define Q_DECLARE_MOVABLE_CONTAINER(CONTAINER) \ -template class CONTAINER; \ -template \ -class QTypeInfo< CONTAINER > \ +template \ +class QTypeInfo> \ { \ public: \ enum { \ @@ -134,27 +133,11 @@ Q_DECLARE_MOVABLE_CONTAINER(QList); Q_DECLARE_MOVABLE_CONTAINER(QQueue); Q_DECLARE_MOVABLE_CONTAINER(QStack); Q_DECLARE_MOVABLE_CONTAINER(QSet); - -#undef Q_DECLARE_MOVABLE_CONTAINER - -#define Q_DECLARE_MOVABLE_CONTAINER(CONTAINER) \ -template class CONTAINER; \ -template \ -class QTypeInfo< CONTAINER > \ -{ \ -public: \ - enum { \ - isPointer = false, \ - isIntegral = false, \ - isComplex = true, \ - isRelocatable = true, \ - }; \ -} - Q_DECLARE_MOVABLE_CONTAINER(QMap); Q_DECLARE_MOVABLE_CONTAINER(QMultiMap); Q_DECLARE_MOVABLE_CONTAINER(QHash); Q_DECLARE_MOVABLE_CONTAINER(QMultiHash); +Q_DECLARE_MOVABLE_CONTAINER(QCache); #undef Q_DECLARE_MOVABLE_CONTAINER diff --git a/src/corelib/tools/qcontainerfwd.h b/src/corelib/tools/qcontainerfwd.h index a104b11965..b9a50e4d60 100644 --- a/src/corelib/tools/qcontainerfwd.h +++ b/src/corelib/tools/qcontainerfwd.h @@ -37,11 +37,11 @@ ** ****************************************************************************/ +#include + #ifndef QCONTAINERFWD_H #define QCONTAINERFWD_H -#include - // std headers can unfortunately not be forward declared #include #include