From 03389d47902347e858bbafc990de3ab988c07acf Mon Sep 17 00:00:00 2001 From: Ivan Solovev Date: Thu, 12 Dec 2024 15:37:10 +0100 Subject: [PATCH] Fix docs for QSet (in)equality operators The missing '&' prevented qdoc from generating the docs. Amends f9f3bf79dccbfcabbd5c59c39f9f018d71b7549f. Pick-to: 6.9 Change-Id: I1d8d7a4e2f4c46c4c365cb5a5e38877837881c45 Reviewed-by: Fabian Kosmale --- src/corelib/tools/qset.qdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelib/tools/qset.qdoc b/src/corelib/tools/qset.qdoc index 2e71693bc75..99958596c73 100644 --- a/src/corelib/tools/qset.qdoc +++ b/src/corelib/tools/qset.qdoc @@ -104,7 +104,7 @@ */ /*! - \fn template bool QSet::operator==(const QSet lhs, const QSet &rhs) + \fn template bool QSet::operator==(const QSet &lhs, const QSet &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 bool QSet::operator!=(const QSet lhs, const QSet &rhs) + \fn template bool QSet::operator!=(const QSet &lhs, const QSet &rhs) Returns \c true if the \a lhs set is not equal to the \a rhs set; otherwise returns \c false.