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:
Andrea Catania 2020-05-08 14:21:46 +02:00 committed by Rémi Verschelde
parent 9669c437ef
commit b0ba122443
1 changed files with 1 additions and 1 deletions

View File

@ -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;