Removed const from OAHashMap iterator value
to allows to mutate the value while iterating over it.
(cherry picked from commit 97f9bbcfa3
)
This commit is contained in:
parent
9669c437ef
commit
b0ba122443
|
@ -288,7 +288,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