Remove CDS_EMPLACE_SUPPORT macro and unused code
[libcds.git] / tests / test-hdr / tree / hdr_ellenbintree_map.h
index 4105170fa4aff7774ba66b88fef65376a88d6b52..0a20d07b2c6c8bd074c26d45368466dd43cdabad 100644 (file)
@@ -326,7 +326,6 @@ namespace tree {
             CPPUNIT_ASSERT( m.empty() );
             CPPUNIT_ASSERT( check_size( m, 0 ));
 
-#       ifdef CDS_EMPLACE_SUPPORT
             // emplace test
             CPPUNIT_ASSERT( m.emplace(126) ) ; // key = 126, val = 0
             CPPUNIT_ASSERT( m.emplace(137, 731))    ;   // key = 137, val = 731
@@ -351,7 +350,6 @@ namespace tree {
             m.clear();
             CPPUNIT_ASSERT( m.empty() );
             CPPUNIT_ASSERT( check_size( m, 0 ));
-#       endif
         }
 
         template <typename Map>