Remove CDS_EMPLACE_SUPPORT macro and unused code
[libcds.git] / cds / container / skip_list_set_rcu.h
index fa3f22bb1d5ddcfbd9e24efba1f06808dfaf9fc3..2ea9f4970937d56e994f66c945e73308708404c2 100644 (file)
@@ -455,15 +455,11 @@ namespace cds { namespace container {
             return bRes;
         }
 
-#   ifdef CDS_EMPLACE_SUPPORT
         /// Inserts data of type \ref value_type constructed with <tt>std::forward<Args>(args)...</tt>
         /**
             Returns \p true if inserting successful, \p false otherwise.
 
             RCU \p synchronize method can be called. RCU should not be locked.
-
-            @note This function is available only for compiler that supports
-            variadic template and move semantics
         */
         template <typename... Args>
         bool emplace( Args&&... args )
@@ -475,7 +471,6 @@ namespace cds { namespace container {
             }
             return false;
         }
-#   endif
 
         /// Delete \p key from the set
         /** \anchor cds_nonintrusive_SkipListSet_rcu_erase_val