Remove print statements

This commit is contained in:
Christian Mazakas
2023-02-07 10:08:34 -08:00
parent 77edd24b4e
commit b7c1e6a184

View File

@ -81,12 +81,8 @@ namespace boost {
template <class A>
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 <class A>
@ -117,7 +113,6 @@ namespace boost {
template <class A> 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<