Move lazy_list_base.h from cds/container to cds/container/details
[libcds.git] / tests / test-hdr / ordered_list / hdr_lazy_kv.h
index 5d9fdaa0f2811f8c9d5fde26319157a628c8c02d..e800f497dcf72e5589bad9e2a2278264530a912c 100644 (file)
@@ -1,7 +1,7 @@
 //$$CDS-header$$
 
 #include "cppunit/cppunit_proxy.h"
-#include <cds/container/lazy_list_base.h>
+#include <cds/container/details/lazy_list_base.h>
 
 namespace ordlist {
     namespace cc = cds::container;
@@ -193,7 +193,6 @@ namespace ordlist {
             l.clear();
             CPPUNIT_ASSERT( l.empty() );
 
-#ifdef CDS_EMPLACE_SUPPORT
             // insert test
             CPPUNIT_ASSERT( l.emplace( 501 ) );
             CPPUNIT_ASSERT( l.emplace( 251, 152 ));
@@ -209,7 +208,6 @@ namespace ordlist {
 
             l.clear();
             CPPUNIT_ASSERT( l.empty() );
-#endif
 
             // Iterator test
             {
@@ -512,7 +510,6 @@ namespace ordlist {
                 l.clear();
                 CPPUNIT_ASSERT( l.empty() );
 
-#ifdef CDS_EMPLACE_SUPPORT
                 // insert test
                 CPPUNIT_ASSERT( l.emplace( 501 ) != l.end());
                 CPPUNIT_ASSERT( l.emplace( 251, 152 ) != l.end());
@@ -533,7 +530,6 @@ namespace ordlist {
 
                 l.clear();
                 CPPUNIT_ASSERT( l.empty() );
-#endif
 
                 // Iterator test
                 {