mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +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 {
|
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