mirror of
https://github.com/boostorg/container.git
synced 2026-07-08 06:00:50 +02:00
Remove forceinline
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user