From 8a8aff2e9d449dd1e56d1f4c4d84cdf510abdd13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 27 Apr 2026 01:07:23 +0200 Subject: [PATCH] Fix compilation error when BOOST_CONTAINER_SEGMENTED_LOOP_UNROLLING is activated --- include/boost/container/experimental/segmented_copy_n.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/container/experimental/segmented_copy_n.hpp b/include/boost/container/experimental/segmented_copy_n.hpp index 9366ca0..7cd793d 100644 --- a/include/boost/container/experimental/segmented_copy_n.hpp +++ b/include/boost/container/experimental/segmented_copy_n.hpp @@ -304,7 +304,7 @@ OutIter segmented_copy_n_dispatch template 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 dst_traits;