QDebug: add missing docs for new QVLA streaming operator

Change-Id: I02af3b0e5615c8281b204fad0e6454bf40aca475
Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
This commit is contained in:
Marc Mutz 2021-06-13 18:36:52 +02:00
parent c771ad8cdf
commit fb3f903980

View File

@ -812,6 +812,15 @@ QDebug &QDebug::resetFormat()
support streaming into QDebug.
*/
/*!
\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