Fix tst_collections.cpp
There was a copy-paste error in NoCmpRecursiveList definition.
Amends 9f13842fe6.
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>
bb10
parent
837967c839
commit
09ddc1b893
|
|
@ -178,8 +178,8 @@ struct NoCmpParamRecursiveMultiHashK : public QMultiHash<NoCmpParamRecursiveMult
|
|||
|
||||
struct NoCmpRecursiveList : public QList<NoCmpRecursiveList>
|
||||
{
|
||||
bool operator==(const RecursiveList &) const = delete;
|
||||
bool operator<(const RecursiveList &) const = delete;
|
||||
bool operator==(const NoCmpRecursiveList &) const = delete;
|
||||
bool operator<(const NoCmpRecursiveList &) const = delete;
|
||||
};
|
||||
struct NoCmpRecursiveSet : public QSet<NoCmpRecursiveSet>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue