Rename insert() to set() to avoid confusion with std::map::insert()
[junction.git] / junction / extra / impl / MapAdapter_CDS_Cuckoo.h
index fd477f4c1f315311235d5c012ecc03c69febfb46..71fef3083c686272b369315564f8c30144ac32c9 100644 (file)
@@ -86,7 +86,7 @@ public:
         Map(ureg capacity) : m_map() {
         }
 
-        void insert(u32 key, void* value) {
+        void set(u32 key, void* value) {
             m_map.insert(key, value);
         }