mirror of
https://github.com/boostorg/container.git
synced 2025-08-03 22:44:26 +02:00
Fix parameter type of uninitialized_copy_alloc_n_source()
This commit is contained in:
@@ -512,7 +512,7 @@ template
|
||||
typename I, // I models InputIterator
|
||||
typename F> // F models ForwardIterator
|
||||
inline typename container_detail::disable_if_memtransfer_copy_constructible<I, F, I>::type
|
||||
uninitialized_copy_alloc_n_source(Allocator &a, I f, typename boost::container::iterator_traits<I>::difference_type n, F r)
|
||||
uninitialized_copy_alloc_n_source(Allocator &a, I f, typename boost::container::allocator_traits<Allocator>::size_type n, F r)
|
||||
{
|
||||
F back = r;
|
||||
BOOST_TRY{
|
||||
|
Reference in New Issue
Block a user