mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 16:18:52 +00:00
fix compiler issue
This commit is contained in:
+1
-1
@@ -374,7 +374,7 @@ struct PtrMapIterator {
|
||||
}
|
||||
|
||||
bool operator==(PtrMapIterator<K, V> const &other) const noexcept {
|
||||
return this->map == other->map && this->index == other->index;
|
||||
return this->map == other.map && this->index == other.index;
|
||||
}
|
||||
|
||||
operator PtrMapEntry<K, V> *() const {
|
||||
|
||||
Reference in New Issue
Block a user