Fix Dictionary iterator comparison

Missing change from 9291295a4d
This commit is contained in:
2023-10-07 14:24:31 +03:00
parent a9dd9adc22
commit bc658bbfba

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