summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qdebug.cpp
diff options
context:
space:
mode:
authorDheerendra Purohit <dheerendra@pthinks.com>2024-12-02 17:02:46 +0530
committerDheerendra Purohit <dheerendra@pthinks.com>2024-12-12 16:10:43 +0000
commit51f702d4029148570d255daef80d071d98cf1e16 (patch)
tree020aa74010bc15238d3c795a9726c6364000d23c /src/corelib/io/qdebug.cpp
parentd991572a45b2bbdcd43e59586f88487837a2927c (diff)
QDebug: add refinements to qDebug support for stl containers
Refinements of the stl containers based on the comments. Fixes: QTBUG-131766 Change-Id: Iddca031a7b63cc24a3d4a1fdede02b8968e95be9 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/io/qdebug.cpp')
-rw-r--r--src/corelib/io/qdebug.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/corelib/io/qdebug.cpp b/src/corelib/io/qdebug.cpp
index 9b64be67ceb..1fb2addc9ed 100644
--- a/src/corelib/io/qdebug.cpp
+++ b/src/corelib/io/qdebug.cpp
@@ -1211,8 +1211,8 @@ QDebug &QDebug::putTupleLikeImplImpl(const char *ns, const char *what,
\relates QDebug
\since 6.9
- Writes the contents of \a map to \a debug. Both \c Key and
- \c T need to support streaming into QDebug.
+ Writes the contents of \a map to \a debug. Both \c Key and
+ \c T need to support streaming into QDebug.
*/
/*!
@@ -1220,11 +1220,10 @@ QDebug &QDebug::putTupleLikeImplImpl(const char *ns, const char *what,
\relates QDebug
\since 6.9
-Writes the contents of \a unordered_set to \a debug. The \c Key type
-needs to support streaming into QDebug.
+ Writes the contents of \a unordered_set to \a debug. The \c Key type
+ needs to support streaming into QDebug.
*/
-
/*!
\fn template <class Key, class T> QDebug operator<<(QDebug debug, const QHash<Key, T> &hash)
\relates QDebug