Removed const from OAHashMap iterator value
to allows to mutate the value while iterating over it.
This commit is contained in:
parent
924cecf0b0
commit
97f9bbcfa3
|
@ -300,7 +300,7 @@ public:
|
||||||
bool valid;
|
bool valid;
|
||||||
|
|
||||||
const TKey *key;
|
const TKey *key;
|
||||||
const TValue *value;
|
TValue *value;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint32_t pos;
|
uint32_t pos;
|
||||||
|
|
Loading…
Reference in New Issue