Rename set() to assign()
[junction.git] / junction / extra / impl / MapAdapter_StdMap.h
index 84259369d1cdddea13dba15f7af51021481d8f83..9fde8f4b136eb63eaf209f50bc7bd47b0ebf53f5 100644 (file)
@@ -52,7 +52,7 @@ public:
         Map(ureg) {
         }
 
-        void set(u32 key, void* value) {
+        void assign(u32 key, void* value) {
             std::lock_guard<std::mutex> guard(m_mutex);
             m_map[key] = value;
         }