mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Removed const from OAHashMap iterator value
to allows to mutate the value while iterating over it.
This commit is contained in:
@@ -300,7 +300,7 @@ public:
|
||||
bool valid;
|
||||
|
||||
const TKey *key;
|
||||
const TValue *value;
|
||||
TValue *value;
|
||||
|
||||
private:
|
||||
uint32_t pos;
|
||||
|
||||
Reference in New Issue
Block a user