From 8d82e7538df4b53da54aa50d52299eec88a5778f Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 14 May 2012 16:40:54 +0000 Subject: [PATCH] Removed extra include of , thanks to Michel Morin for the catch [SVN r78471] --- include/boost/algorithm/cxx11/partition_point.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 )