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
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,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;