Remove forceinline

This commit is contained in:
Ion Gaztañaga
2026-05-02 00:32:05 +02:00
parent cd6a77ae20
commit 8921f4194d
2 changed files with 1 additions and 2 deletions
@@ -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 <class FwdIt, class Sent, class Predicate>
BOOST_CONTAINER_FORCEINLINE
FwdIt segmented_remove_if(FwdIt first, Sent last, Predicate pred)
{
typedef segmented_iterator_traits<FwdIt> traits;
@@ -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 <class FwdIt, class Sent, class Size, class T>
BOOST_CONTAINER_FORCEINLINE FwdIt segmented_search_n
inline FwdIt segmented_search_n
(FwdIt first, Sent last, Size count, const T& value)
{
if(count == 1)