diff --git a/src/corelib/io/qdebug.cpp b/src/corelib/io/qdebug.cpp index 9e9c4292355..80d5b7497db 100644 --- a/src/corelib/io/qdebug.cpp +++ b/src/corelib/io/qdebug.cpp @@ -1216,7 +1216,7 @@ QDebug &QDebug::putTupleLikeImplImpl(const char *ns, const char *what, */ /*! - \fn template QDebug operator<<(QDebug debug, const std::unordered_map &unordered_map) + \fn template QDebug operator<<(QDebug debug, const std::unordered_map &map) \relates QDebug \since 6.9 diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h index 4af152440c7..cf30c79a23a 100644 --- a/src/corelib/io/qdebug.h +++ b/src/corelib/io/qdebug.h @@ -574,6 +574,18 @@ QDebug operator<<(QDebug debug, const std::pair &pair); template QDebug operator<<(QDebug debug, const QContiguousCache &cache); +template +QDebug operator<<(QDebug debug, const std::multiset &multiset); + +template +QDebug operator<<(QDebug debug, const std::set &set); + +template +QDebug operator<<(QDebug debug, const std::unordered_map &unordered_map); + +template +QDebug operator<<(QDebug debug, const std::unordered_set &unordered_set); + #endif // Q_QDOC template