summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2021-06-13 18:36:52 +0200
committerMarc Mutz <marc.mutz@kdab.com>2021-06-15 00:48:46 +0200
commitfb3f90398001b2f0acbf2a12ec22cc2708a2d29b (patch)
treeb5f49dbe456bcc166351fc3cc7e3a963e67693fe
parentc771ad8cdfccb2678664d9e7c54669acf82fedaa (diff)
QDebug: add missing docs for new QVLA streaming operator
Change-Id: I02af3b0e5615c8281b204fad0e6454bf40aca475 Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
-rw-r--r--src/corelib/io/qdebug.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/corelib/io/qdebug.cpp b/src/corelib/io/qdebug.cpp
index 0a7a847ef6..1889a4c3a2 100644
--- a/src/corelib/io/qdebug.cpp
+++ b/src/corelib/io/qdebug.cpp
@@ -813,6 +813,15 @@ QDebug &QDebug::resetFormat()
*/
/*!
+ \fn template <class T, qsizetype P> QDebug operator<<(QDebug debug, const QVarLengthArray<T,P> &array)
+ \relates QDebug
+ \since 6.3
+
+ Writes the contents of \a array to \a debug. \c T needs to
+ support streaming into QDebug.
+*/
+
+/*!
\fn template <typename T, typename Alloc> QDebug operator<<(QDebug debug, const std::list<T, Alloc> &vec)
\relates QDebug
\since 5.7