Removed extra include of <algorithm>, thanks to Michel Morin for the catch

[SVN r78471]
This commit is contained in:
Marshall Clow
2012-05-14 16:40:54 +00:00
parent fae48250b4
commit 8d82e7538d

View File

@ -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 )