Merge pull request #5001 from justgook/master

Fix compiler build error
This commit is contained in:
gingerBill
2025-04-04 18:35:46 +01:00
committed by GitHub
+1 -1
View File
@@ -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 {