Removed const from OAHashMap iterator value

to allows to mutate the value while iterating over it.
This commit is contained in:
Andrea Catania 2020-05-08 14:21:46 +02:00 committed by GitHub
parent 924cecf0b0
commit 97f9bbcfa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ public:
bool valid;
const TKey *key;
const TValue *value;
TValue *value;
private:
uint32_t pos;