doc: Correct remaining qdoc warnings in QRandomGenerator
Due to the integration of clang in qdoc, several qdoc warnings appeared for class QRandomGenerator. This update corrects all the remaining qdoc warnings. Change-Id: I92fe9f7d9cb193e145ee8ad0e7198625b9a5bf7b Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
9de26a630f
commit
f28ef0eca9
@ -671,7 +671,7 @@ inline QRandomGenerator::SystemGenerator &QRandomGenerator::SystemGenerator::sel
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QRandomGenerator::QRandomGenerator(const quint32 (&seedBuffer)[N])
|
||||
\fn template <qsizetype N> QRandomGenerator::QRandomGenerator(const quint32 (&seedBuffer)[N])
|
||||
\overload
|
||||
|
||||
Initializes this QRandomGenerator object with the values found in the
|
||||
@ -765,9 +765,9 @@ inline QRandomGenerator::SystemGenerator &QRandomGenerator::SystemGenerator::sel
|
||||
/*!
|
||||
\typedef QRandomGenerator::result_type
|
||||
|
||||
A typedef to the type that operator()() returns. That is, quint32.
|
||||
A typedef to the type that operator() returns. That is, quint32.
|
||||
|
||||
\sa {QRandomGenerator::operator()}{operator()()}
|
||||
\sa operator()
|
||||
*/
|
||||
|
||||
/*!
|
||||
@ -837,7 +837,7 @@ inline QRandomGenerator::SystemGenerator &QRandomGenerator::SystemGenerator::sel
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QRandomGenerator::generate(ForwardIterator begin, ForwardIterator end)
|
||||
\fn template <typename ForwardIterator> void QRandomGenerator::generate(ForwardIterator begin, ForwardIterator end)
|
||||
|
||||
Generates 32-bit quantities and stores them in the range between \a begin
|
||||
and \a end. This function is equivalent to (and is implemented as):
|
||||
@ -874,7 +874,7 @@ inline QRandomGenerator::SystemGenerator &QRandomGenerator::SystemGenerator::sel
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QRandomGenerator::fillRange(UInt *buffer, qsizetype count)
|
||||
\fn template <typename UInt> void QRandomGenerator::fillRange(UInt *buffer, qsizetype count)
|
||||
|
||||
Generates \a count 32- or 64-bit quantities (depending on the type \c UInt)
|
||||
and stores them in the buffer pointed by \a buffer. This is the most
|
||||
@ -894,7 +894,7 @@ inline QRandomGenerator::SystemGenerator &QRandomGenerator::SystemGenerator::sel
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QRandomGenerator::fillRange(UInt (&buffer)[N})
|
||||
\fn template <typename UInt, size_t N> void QRandomGenerator::fillRange(UInt (&buffer)[N})
|
||||
|
||||
Generates \c N 32- or 64-bit quantities (depending on the type \c UInt) and
|
||||
stores them in the \a buffer array. This is the most efficient way to
|
||||
@ -1107,19 +1107,12 @@ inline QRandomGenerator::SystemGenerator &QRandomGenerator::SystemGenerator::sel
|
||||
\sa QRandomGenerator
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QRandomGenerator64::QRandomGenerator64(const QRandomGenerator &other)
|
||||
\internal
|
||||
|
||||
Creates a copy.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\typedef QRandomGenerator64::result_type
|
||||
|
||||
A typedef to the type that operator()() returns. That is, quint64.
|
||||
A typedef to the type that operator() returns. That is, quint64.
|
||||
|
||||
\sa {QRandomGenerator64::operator()}{operator()()}
|
||||
\sa operator()
|
||||
*/
|
||||
|
||||
/*!
|
||||
|
Loading…
x
Reference in New Issue
Block a user