Merge branch 'GoaLitiuM-dict_iter_fix'

This commit is contained in:
Wojtek Figat
2023-10-08 11:05:18 +02:00

View File

@@ -309,7 +309,7 @@ public:
FORCE_INLINE bool operator==(const Iterator& v) const
{
return _index == v._index && &_collection == &v._collection;
return _index == v._index && _collection == v._collection;
}
FORCE_INLINE bool operator!=(const Iterator& v) const