Browse Source

Merge pull request #82797 from RandomShaper/fix_rbmap

Fix `RBMap`'s, iterator-based, `remove()`
Rémi Verschelde 1 year ago
parent
commit
3bc1c9b5e0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      core/templates/rb_map.h

+ 2 - 0
core/templates/rb_map.h

@@ -96,6 +96,8 @@ public:
 	typedef KeyValue<K, V> ValueType;
 	typedef KeyValue<K, V> ValueType;
 
 
 	struct Iterator {
 	struct Iterator {
+		friend class RBMap<K, V, C, A>;
+
 		_FORCE_INLINE_ KeyValue<K, V> &operator*() const {
 		_FORCE_INLINE_ KeyValue<K, V> &operator*() const {
 			return E->key_value();
 			return E->key_value();
 		}
 		}