Skip to content

Commit

Permalink
Fix docs for QSet (in)equality operators
Browse files Browse the repository at this point in the history
The missing '&' prevented qdoc from generating the docs.

Amends f9f3bf7.

Pick-to: 6.9
Change-Id: I1d8d7a4e2f4c46c4c365cb5a5e38877837881c45
Reviewed-by: Fabian Kosmale <[email protected]>
  • Loading branch information
isolovev committed Dec 12, 2024
1 parent 51f702d commit 03389d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/corelib/tools/qset.qdoc
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
*/

/*!
\fn template <class T> bool QSet<T>::operator==(const QSet<T> lhs, const QSet<T> &rhs)
\fn template <class T> bool QSet<T>::operator==(const QSet<T> &lhs, const QSet<T> &rhs)

Returns \c true if the \a lhs set is equal to the \a rhs set; otherwise
returns \c false.
Expand All @@ -117,7 +117,7 @@
*/

/*!
\fn template <class T> bool QSet<T>::operator!=(const QSet<T> lhs, const QSet<T> &rhs)
\fn template <class T> bool QSet<T>::operator!=(const QSet<T> &lhs, const QSet<T> &rhs)

Returns \c true if the \a lhs set is not equal to the \a rhs set; otherwise
returns \c false.
Expand Down

0 comments on commit 03389d4

Please sign in to comment.