Rename insert() to set() to avoid confusion with std::map::insert()
[junction.git] / junction / extra / impl / MapAdapter_Tervel.h
index d00320d1da2c161b1c2584d4dfc6ff9707d1b016..d2942780fe328058b9ad101aa5daa0191817485b 100644 (file)
@@ -62,7 +62,7 @@ public:
         Map(ureg capacity) : m_map(capacity, 3) {
         }
 
-        void insert(u32 key, void* value) {
+        void set(u32 key, void* value) {
             m_map.insert(key, (u64) value);
         }