diff --git a/src/corelib/io/qdebug.cpp b/src/corelib/io/qdebug.cpp index 4f6b1696eb9..0eaeb5ccda8 100644 --- a/src/corelib/io/qdebug.cpp +++ b/src/corelib/io/qdebug.cpp @@ -1002,14 +1002,6 @@ QDebug &QDebug::resetFormat() \c T need to support streaming into QDebug. */ -/*! - \fn template QDebug operator<<(QDebug debug, const QPair &pair) - \relates QDebug - - Writes the contents of \a pair to \a debug. Both \c T1 and - \c T2 need to support streaming into QDebug. -*/ - /*! \fn template QDebug operator<<(QDebug debug, const std::pair &pair) \relates QDebug diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h index 770f4fac9a8..95663142339 100644 --- a/src/corelib/io/qdebug.h +++ b/src/corelib/io/qdebug.h @@ -435,9 +435,6 @@ QDebug operator<<(QDebug debug, const QMultiHash &hash); template QDebug operator<<(QDebug debug, const QSet &set); -template -QDebug operator<<(QDebug debug, const QPair &pair); - template QDebug operator<<(QDebug debug, const std::pair &pair);