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 <thiago.macieira@intel.com>
(cherry picked from commit 874c8c56a4883383e49a1e59262113f8eb29486f)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Marc Mutz 2021-08-12 17:47:34 +02:00 committed by Qt Cherry-pick Bot
parent d3ac94e2b7
commit 7b47e68089

View File

@ -90,6 +90,11 @@
\sa QList
*/
/*! \fn template<class T, qsizetype Prealloc> QVarLengthArray<T, Prealloc>::QVarLengthArray()
Constructs an array with an initial size of zero.
*/
/*! \fn template<class T, qsizetype Prealloc> QVarLengthArray<T, Prealloc>::QVarLengthArray(qsizetype size)
Constructs an array with an initial size of \a size elements.