Fix compilation error when BOOST_CONTAINER_SEGMENTED_LOOP_UNROLLING is activated

This commit is contained in:
Ion Gaztañaga
2026-04-27 01:07:23 +02:00
parent ed68c8ea15
commit 8a8aff2e9d
@@ -304,7 +304,7 @@ OutIter segmented_copy_n_dispatch
template <class RAIter, class Size, class OutIter>
BOOST_CONTAINER_FORCEINLINE OutIter segmented_copy_n_dispatch
(RAIter first, Size count, OutIter result, non_segmented_iterator_tag, const std::random_access_iterator_tag &)
(RAIter first, Size count, OutIter result, non_segmented_iterator_tag, const std::random_access_iterator_tag &src_tag)
{
#if !defined(BOOST_CONTAINER_DISABLE_MULTI_SEGMENTED_ALGO)
typedef segmented_iterator_traits<OutIter> dst_traits;