From 8921f4194d770842e3251584fa689e427be53f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sat, 2 May 2026 00:32:05 +0200 Subject: [PATCH] Remove forceinline --- include/boost/container/experimental/segmented_remove_if.hpp | 1 - include/boost/container/experimental/segmented_search_n.hpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/container/experimental/segmented_remove_if.hpp b/include/boost/container/experimental/segmented_remove_if.hpp index 2a8973e..1951dd3 100644 --- a/include/boost/container/experimental/segmented_remove_if.hpp +++ b/include/boost/container/experimental/segmented_remove_if.hpp @@ -29,7 +29,6 @@ namespace container { //! Removes all elements for which \c pred returns true from [first, last), //! moving retained elements forward. Returns iterator to new end. template -BOOST_CONTAINER_FORCEINLINE FwdIt segmented_remove_if(FwdIt first, Sent last, Predicate pred) { typedef segmented_iterator_traits traits; diff --git a/include/boost/container/experimental/segmented_search_n.hpp b/include/boost/container/experimental/segmented_search_n.hpp index 5aeb849..2d5ecde 100644 --- a/include/boost/container/experimental/segmented_search_n.hpp +++ b/include/boost/container/experimental/segmented_search_n.hpp @@ -152,7 +152,7 @@ segmented_search_n_dispatch //! Finds the first occurrence of \c count consecutive elements equal to \c value //! in [first, last). Returns an iterator to the start of the run, or \c last if not found. template -BOOST_CONTAINER_FORCEINLINE FwdIt segmented_search_n +inline FwdIt segmented_search_n (FwdIt first, Sent last, Size count, const T& value) { if(count == 1)