mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-06 09:16:33 +02:00
Removed extra include of <algorithm>, thanks to Michel Morin for the catch
[SVN r78471]
This commit is contained in:
@ -14,14 +14,13 @@
|
|||||||
|
|
||||||
#include <algorithm> // for std::partition_point, if available
|
#include <algorithm> // for std::partition_point, if available
|
||||||
|
|
||||||
#include <algorithm> // for std::partition_point, if available
|
|
||||||
#include <boost/range/begin.hpp>
|
#include <boost/range/begin.hpp>
|
||||||
#include <boost/range/end.hpp>
|
#include <boost/range/end.hpp>
|
||||||
|
|
||||||
namespace boost { namespace algorithm {
|
namespace boost { namespace algorithm {
|
||||||
|
|
||||||
#if __cplusplus >= 201103L
|
#if __cplusplus >= 201103L
|
||||||
// Use the C++11 versions of iota if it is available
|
// Use the C++11 versions of partition_point if it is available
|
||||||
using std::partition_point; // Section 25.3.13
|
using std::partition_point; // Section 25.3.13
|
||||||
#else
|
#else
|
||||||
/// \fn partition_point ( ForwardIterator first, ForwardIterator last, Predicate p )
|
/// \fn partition_point ( ForwardIterator first, ForwardIterator last, Predicate p )
|
||||||
|
Reference in New Issue
Block a user