mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 22:58:46 +00:00
+1
-1
@@ -374,7 +374,7 @@ struct PtrMapIterator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool operator==(PtrMapIterator<K, V> const &other) const noexcept {
|
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 {
|
operator PtrMapEntry<K, V> *() const {
|
||||||
|
|||||||
Reference in New Issue
Block a user