From b7c1e6a1841864062c68717888a014dff3213f13 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Tue, 7 Feb 2023 10:08:34 -0800 Subject: [PATCH] Remove print statements --- include/boost/unordered/unordered_node_map.hpp | 5 ----- 1 file changed, 5 deletions(-) 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<