mirror of
https://github.com/boostorg/container.git
synced 2026-07-05 17:40:46 +02:00
remove forceinline
This commit is contained in:
@@ -35,8 +35,7 @@ namespace container {
|
||||
//! partitioned with respect to \c pred.
|
||||
//! Exploits segmentation when available.
|
||||
template <class InpIter, class Sent, class Pred>
|
||||
BOOST_CONTAINER_FORCEINLINE
|
||||
bool segmented_is_partitioned(InpIter first, Sent last, Pred pred)
|
||||
inline bool segmented_is_partitioned(InpIter first, Sent last, Pred pred)
|
||||
{
|
||||
first = segmented_find_if_not(first, last, pred);
|
||||
return segmented_none_of(first, last, pred);
|
||||
|
||||
Reference in New Issue
Block a user