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)