Merge pull request #38567 from AndreaCatania/AndreaCatania-patch-3

Removed const from OAHashMap iterator value
This commit is contained in:
Rémi Verschelde 2020-05-19 10:26:05 +02:00 committed by GitHub
commit 36ba9fabde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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