Fix docs for QSet (in)equality operators
The missing '&' prevented qdoc from generating the docs. Amends f9f3bf79dccbfcabbd5c59c39f9f018d71b7549f. Change-Id: I1d8d7a4e2f4c46c4c365cb5a5e38877837881c45 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit 03389d47902347e858bbafc990de3ab988c07acf) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
8472fc2573
commit
7044c32963
@ -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.
|
||||
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user