diff --git a/src/corelib/io/qdebug.cpp b/src/corelib/io/qdebug.cpp index 12adcf947df..95efa006460 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 3fd7ea7223f..b5053e827a1 100644 --- a/src/corelib/io/qdebug.h +++ b/src/corelib/io/qdebug.h @@ -569,6 +569,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