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 1414
1515#include < algorithm> // for std::less, tie, mismatch and is_permutation (if available)
1616#include < utility> // for std::make_pair
17+ #include < functional> // for std::equal_to
1718#include < iterator>
18- #include < iostream>
1919
2020#include < boost/range/begin.hpp>
2121#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
233233 bool is_strictly_increasing ( ForwardIterator first, ForwardIterator last )
234234 {
235235 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>());
237237 }
238238
239239// / \fn is_strictly_increasing ( const R &range )
You can’t perform that action at this time.
0 commit comments