Doc: Fix undocumented parameter in QFlags::operator=()

Fixes a documentation warning:
  (qdoc) warning: Undocumented parameter 'other' in QFlags::operator=()

This warning is reported by the latest version of QDoc, but fixing
it causes another warning in the currently-provisioned QDoc.
Therefore, raise the warning limit temporarily to pass the
documentation check in CI.

Pick-to: 6.7
Change-Id: I14863baebf712cda6f4da6d989e3ab83ffea7f85
Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
bb10
Topi Reinio 2024-01-31 12:05:04 +00:00
parent 92dc4c5c94
commit d76828a1c7
2 changed files with 3 additions and 3 deletions

View File

@ -66,5 +66,5 @@ manifestmeta.highlighted.names = \
"QtCore/Serialization Converter" \
"QtCore/QXmlStream Bookmarks Example"
# Enforce zero documentation warnings
warninglimit = 0
# Temporarily allow warning: No such parameter 'other' in QFlags::operator=()
warninglimit = 1

View File

@ -174,7 +174,7 @@
/*!
\fn template <typename Enum> QFlags &QFlags<Enum>::operator=(const QFlags &other)
Assigns \e other to this object and returns a reference to this
Assigns \a other to this object and returns a reference to this
object.
*/