diff --git a/include/boost/unordered/unordered_node_map.hpp b/include/boost/unordered/unordered_node_map.hpp index ba0a9cee..c215f4f3 100644 --- a/include/boost/unordered/unordered_node_map.hpp +++ b/include/boost/unordered/unordered_node_map.hpp @@ -81,12 +81,8 @@ namespace boost { template static void construct(A&, element_type* p, element_type&& x) { - std::cout << "should be seeing this: construct(A&, element_type* p, " - "element_type&& x)" - << std::endl; p->p = x.p; x.p = nullptr; - std::cout << "p->p is now: " << p->p << std::endl; } template @@ -117,7 +113,6 @@ namespace boost { template static void destroy(A& al, element_type* p) noexcept { if (p->p) { - std::cout << "going to deallocate: " << p->p << std::endl; boost::allocator_destroy(al, p->p); boost::allocator_deallocate(al, boost::pointer_traits<