Remove extraneous copy constructor from flat set's type policy

This commit is contained in:
Christian Mazakas 2023-02-21 07:53:09 -08:00
parent 53580a3070
commit 16c1593368

View File

@ -45,12 +45,6 @@ namespace boost {
static element_type&& move(element_type& x) { return std::move(x); }
template <class A>
static void construct(A& al, element_type* p, element_type const& copy)
{
boost::allocator_construct(al, p, copy);
}
template <class A, class... Args>
static void construct(A& al, element_type* p, Args&&... args)
{