Remove CDS_EMPLACE_SUPPORT macro and unused code
[libcds.git] / cds / container / split_list_map_nogc.h
index af963c6a1da550bad96aa7942c54a700a9ef1aed..f7cbac3bfe50ea9b9a19539f7699452805ca9646 100644 (file)
@@ -208,22 +208,17 @@ namespace cds { namespace container {
             return it;
         }
 
-#   ifdef CDS_EMPLACE_SUPPORT
         /// For key \p key inserts data of type \ref mapped_type constructed with <tt>std::forward<Args>(args)...</tt>
         /**
             \p key_type should be constructible from type \p K
 
             Returns \p true if inserting successful, \p false otherwise.
-
-            This function is available only for compiler that supports
-            variadic template and move semantics
         */
         template <typename K, typename... Args>
         iterator emplace( K&& key, Args&&... args )
         {
             return base_class::emplace( std::forward<K>(key), std::move(mapped_type(std::forward<Args>(args)...)));
         }
-#   endif
 
         /// Ensures that the key \p key exists in the map
         /**