diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-19 10:26:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 10:26:05 +0200 |
commit | 36ba9fabde89982f73c96926f72e8cfcc055c66b (patch) | |
tree | 5fa193487a69d12832f5b58a63e23a15272bd646 | |
parent | 570b7e79b08becd4b99ef9cc2d15a86397f73d6c (diff) | |
parent | 97f9bbcfa3ba3f09d4486c02cc2230dc21256a3b (diff) |
Merge pull request #38567 from AndreaCatania/AndreaCatania-patch-3
Removed const from OAHashMap iterator value
-rw-r--r-- | core/oa_hash_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/oa_hash_map.h b/core/oa_hash_map.h index 4e2ea034ea..c595e445d5 100644 --- a/core/oa_hash_map.h +++ b/core/oa_hash_map.h @@ -298,7 +298,7 @@ public: bool valid; const TKey *key; - const TValue *value; + TValue *value; private: uint32_t pos; |