diff --git a/test/adaptive_node_pool_test.cpp b/test/adaptive_node_pool_test.cpp index 41e7a7f..13afdb4 100644 --- a/test/adaptive_node_pool_test.cpp +++ b/test/adaptive_node_pool_test.cpp @@ -25,32 +25,3 @@ int main () return 0; } -/* - -#include -#include -#include -#include - -typedef boost::interprocess::managed_heap_memory::segment_manager - segment_manager_t; - -typedef boost::interprocess::map< - uint32_t, uint32_t, std::less, - boost::interprocess::private_adaptive_pool< - std::pair, segment_manager_t>> - mymap_t; - -int main() { - boost::interprocess::managed_heap_memory heap_mem(1u << 20); - - { - mymap_t bbmap(heap_mem.get_segment_manager()); - - bbmap.emplace(1, 2); - - mymap_t bbmap2(boost::move(bbmap)); - } // <= CRASHES HERE - - return 0; -}*/ \ No newline at end of file