mirror of
https://github.com/boostorg/container.git
synced 2025-08-04 06:54:27 +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 I, // I models InputIterator
|
||||||
typename F> // F models ForwardIterator
|
typename F> // F models ForwardIterator
|
||||||
inline typename container_detail::disable_if_memtransfer_copy_constructible<I, F, I>::type
|
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;
|
F back = r;
|
||||||
BOOST_TRY{
|
BOOST_TRY{
|
||||||
|
Reference in New Issue
Block a user