Fix tst_collections.cpp
There was a copy-paste error in NoCmpRecursiveList definition. Amends 9f13842fe61541cb8ab9822174ea963e418b5537. Pick-to: 6.5 Change-Id: I1487710e51a8b92c53b79b747c324654d9b9f334 Reviewed-by: Marc Mutz <marc.mutz@qt.io> (cherry picked from commit 65fede8fae459da86784b0757ca6c3179a8fb883) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
837967c839
commit
09ddc1b893
@ -178,8 +178,8 @@ struct NoCmpParamRecursiveMultiHashK : public QMultiHash<NoCmpParamRecursiveMult
|
|||||||
|
|
||||||
struct NoCmpRecursiveList : public QList<NoCmpRecursiveList>
|
struct NoCmpRecursiveList : public QList<NoCmpRecursiveList>
|
||||||
{
|
{
|
||||||
bool operator==(const RecursiveList &) const = delete;
|
bool operator==(const NoCmpRecursiveList &) const = delete;
|
||||||
bool operator<(const RecursiveList &) const = delete;
|
bool operator<(const NoCmpRecursiveList &) const = delete;
|
||||||
};
|
};
|
||||||
struct NoCmpRecursiveSet : public QSet<NoCmpRecursiveSet>
|
struct NoCmpRecursiveSet : public QSet<NoCmpRecursiveSet>
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user