Remove CDS_EMPLACE_SUPPORT macro and unused code
[libcds.git] / tests / test-hdr / stack / hdr_treiber_stack.h
index 789c9e8491f0c5cf1ba01332286b47a26c0b136f..51ad47e90816e0ec818f66bbcd0e3dce77b2432f 100644 (file)
@@ -54,11 +54,9 @@ namespace stack {
             CPPUNIT_ASSERT( stack.push(30));
             CPPUNIT_ASSERT( !stack.empty());
 
-#ifdef CDS_EMPLACE_SUPPORT
             CPPUNIT_ASSERT( stack.emplace(100));
             CPPUNIT_ASSERT( stack.pop(v));
             CPPUNIT_ASSERT( v == 100 );
-#endif
 
             stack.clear();
             CPPUNIT_ASSERT( stack.empty() );