Remove CDS_EMPLACE_SUPPORT macro and unused code
[libcds.git] / cds / container / ellen_bintree_map_impl.h
index c499754882bfe41cf0092a666cb1cf35d8517577..a71b7857b68dc06a4ec496f613fa9b736415b7fb 100644 (file)
@@ -327,13 +327,9 @@ namespace cds { namespace container {
             return false;
         }
 
-#   ifdef CDS_EMPLACE_SUPPORT
         /// For key \p key inserts data of type \ref value_type constructed with <tt>std::forward<Args>(args)...</tt>
         /**
             Returns \p true if inserting successful, \p false otherwise.
-
-            @note This function is available only for compiler that supports
-            variadic template and move semantics
         */
         template <typename K, typename... Args>
         bool emplace( K&& key, Args&&... args )
@@ -345,7 +341,6 @@ namespace cds { namespace container {
             }
             return false;
         }
-#   endif
 
         /// Ensures that the \p key exists in the map
         /**