Remove CDS_EMPLACE_SUPPORT macro and unused code
[libcds.git] / cds / container / striped_map.h
index ec4472337b3158fea175628fcd091906f7b37517..81be3321d36693e6de8235cec568dda9a0b93dab 100644 (file)
@@ -694,13 +694,9 @@ namespace cds { namespace container {
             return base_class::insert( key, func );
         }
 
-#   ifdef CDS_EMPLACE_SUPPORT
         /// For key \p key inserts data of type \ref mapped_type constructed with <tt>std::forward<Args>(args)...</tt>
         /**
             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>
         bool emplace( K&& key, Args&&... args )
@@ -722,7 +718,6 @@ namespace cds { namespace container {
 
             return bOk;
         }
-#   endif
 
         /// Ensures that the \p key exists in the map
         /**