瀏覽代碼

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

Removed const from OAHashMap iterator value
Rémi Verschelde 5 年之前
父節點
當前提交
36ba9fabde
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/oa_hash_map.h

+ 1 - 1
core/oa_hash_map.h

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