-
Bug
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
6.10
-
None
QFlatMap has no == and no != operators.
I guess it is missing something like:
friend bool comparesEqual(const QFlatMap &a, const QFlatMap &b) noexcept { return std::equals(a.begin(), a.end(), b.begin(), b.end()); } Q_DECLARE_EQUALITY_COMPARABLE(QFlatMap);