mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07:15 +02:00
Remove print statements
This commit is contained in:
@ -61,7 +61,6 @@ namespace boost {
|
||||
template <class A>
|
||||
static void construct(A& al, element_type* p, element_type const& copy)
|
||||
{
|
||||
std::cout << "Okay, I should be seeing this, I guess..." << std::endl;
|
||||
boost::allocator_construct(al, p, copy);
|
||||
}
|
||||
|
||||
@ -284,7 +283,6 @@ namespace boost {
|
||||
std::pair<iterator, bool> >::type
|
||||
insert(K&& k)
|
||||
{
|
||||
std::cout << "this should be my insert() overload" << std::endl;
|
||||
return table_.try_emplace(std::forward<K>(k));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user