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