Renaming map member function insert_key() to insert_with()
[libcds.git] / cds / container / michael_map_rcu.h
index 8888759a8980aeae18bb92519ebb02b91ef29e79..5dc469b8e65d70736cae77d023477a50644ca293 100644 (file)
@@ -382,9 +382,9 @@ namespace cds { namespace container {
             synchronization.
         */
         template <typename K, typename Func>
-        bool insert_key( const K& key, Func func )
+        bool insert_with( const K& key, Func func )
         {
-            const bool bRet = bucket( key ).insert_key( key, func );
+            const bool bRet = bucket( key ).insert_with( key, func );
             if ( bRet )
                 ++m_ItemCounter;
             return bRet;