From 7b47e680893d2c23bfa881a5f6d8499b683b925b Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Thu, 12 Aug 2021 17:47:34 +0200 Subject: [PATCH] QVarLengthArray: add missing default-ctor documentation Was lost when we un-explicit'ed the default ctor in c34242c679aaea6ee1badf6c1e5f274f925f5f50. Change-Id: Ifb4943b9e9647ae59c1cc6d5fc5076e8620b73ce Reviewed-by: Thiago Macieira (cherry picked from commit 874c8c56a4883383e49a1e59262113f8eb29486f) Reviewed-by: Qt Cherry-pick Bot --- src/corelib/tools/qvarlengtharray.qdoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/corelib/tools/qvarlengtharray.qdoc b/src/corelib/tools/qvarlengtharray.qdoc index 52261de4c65..117be578981 100644 --- a/src/corelib/tools/qvarlengtharray.qdoc +++ b/src/corelib/tools/qvarlengtharray.qdoc @@ -90,6 +90,11 @@ \sa QList */ +/*! \fn template QVarLengthArray::QVarLengthArray() + + Constructs an array with an initial size of zero. +*/ + /*! \fn template QVarLengthArray::QVarLengthArray(qsizetype size) Constructs an array with an initial size of \a size elements.