Rename insert() to set() to avoid confusion with std::map::insert()
[junction.git] / junction / extra / impl / MapAdapter_LibCuckoo.h
index 76119ba061d9690e4b3798aae3605e6b108cee28..9e8381776d9a644f455249fecbbd597b5dbfb2b9 100644 (file)
@@ -54,7 +54,7 @@ public:
         Map(ureg capacity) : m_map(capacity) {
         }
 
-        void insert(u32 key, void* value) {
+        void set(u32 key, void* value) {
             m_map.insert(key, value);
         }