diff --git a/include/boost/algorithm/cxx11/partition_point.hpp b/include/boost/algorithm/cxx11/partition_point.hpp index e57ba75..6dc2d3d 100644 --- a/include/boost/algorithm/cxx11/partition_point.hpp +++ b/include/boost/algorithm/cxx11/partition_point.hpp @@ -14,14 +14,13 @@ #include // for std::partition_point, if available -#include // for std::partition_point, if available #include #include namespace boost { namespace algorithm { #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 #else /// \fn partition_point ( ForwardIterator first, ForwardIterator last, Predicate p )