Rename insert() to set() to avoid confusion with std::map::insert()
[junction.git] / junction / extra / impl / MapAdapter_TBB.h
index a87a4653bebdd8ed85a7b903deebe974704fcd87..aa442ae97c8fddfb18a96f7df596f25497499b77 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(std::make_pair(key, value));
         }