forked from boostorg/algorithm
Fix some test (more) failures in Boost.Algorithm
[SVN r77073]
This commit is contained in:
@ -233,7 +233,7 @@ using std::is_sorted; // Section 25.4.1.5
|
||||
bool is_strictly_increasing ( ForwardIterator first, ForwardIterator last )
|
||||
{
|
||||
typedef typename std::iterator_traits<ForwardIterator>::value_type value_type;
|
||||
return is_sorted (first, last, std::less<value_type>());
|
||||
return boost::algorithm::is_sorted (first, last, std::less<value_type>());
|
||||
}
|
||||
|
||||
/// \fn is_strictly_increasing ( const R &range )
|
||||
|
Reference in New Issue
Block a user