From fb3f90398001b2f0acbf2a12ec22cc2708a2d29b Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Sun, 13 Jun 2021 18:36:52 +0200 Subject: [PATCH] QDebug: add missing docs for new QVLA streaming operator Change-Id: I02af3b0e5615c8281b204fad0e6454bf40aca475 Reviewed-by: Giuseppe D'Angelo --- src/corelib/io/qdebug.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/corelib/io/qdebug.cpp b/src/corelib/io/qdebug.cpp index 0a7a847ef6d..1889a4c3a24 100644 --- a/src/corelib/io/qdebug.cpp +++ b/src/corelib/io/qdebug.cpp @@ -812,6 +812,15 @@ QDebug &QDebug::resetFormat() support streaming into QDebug. */ +/*! + \fn template QDebug operator<<(QDebug debug, const QVarLengthArray &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 QDebug operator<<(QDebug debug, const std::list &vec) \relates QDebug