Skip to content

Commit 8a8aff2

Browse files
committed
Fix compilation error when BOOST_CONTAINER_SEGMENTED_LOOP_UNROLLING is activated
1 parent ed68c8e commit 8a8aff2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/container/experimental/segmented_copy_n.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ OutIter segmented_copy_n_dispatch
304304

305305
template <class RAIter, class Size, class OutIter>
306306
BOOST_CONTAINER_FORCEINLINE OutIter segmented_copy_n_dispatch
307-
(RAIter first, Size count, OutIter result, non_segmented_iterator_tag, const std::random_access_iterator_tag &)
307+
(RAIter first, Size count, OutIter result, non_segmented_iterator_tag, const std::random_access_iterator_tag &src_tag)
308308
{
309309
#if !defined(BOOST_CONTAINER_DISABLE_MULTI_SEGMENTED_ALGO)
310310
typedef segmented_iterator_traits<OutIter> dst_traits;

0 commit comments

Comments
 (0)