File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
include/boost/algorithm/cxx11 Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 14
14
15
15
#include < algorithm> // for std::less, tie, mismatch and is_permutation (if available)
16
16
#include < utility> // for std::make_pair
17
+ #include < functional> // for std::equal_to
17
18
#include < iterator>
18
- #include < iostream>
19
19
20
20
#include < boost/range/begin.hpp>
21
21
#include < boost/range/end.hpp>
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ using std::is_sorted; // Section 25.4.1.5
233
233
bool is_strictly_increasing ( ForwardIterator first, ForwardIterator last )
234
234
{
235
235
typedef typename std::iterator_traits<ForwardIterator>::value_type value_type;
236
- return is_sorted (first, last, std::less<value_type>());
236
+ return boost::algorithm:: is_sorted (first, last, std::less<value_type>());
237
237
}
238
238
239
239
// / \fn is_strictly_increasing ( const R &range )
You can’t perform that action at this time.
0 commit comments