Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78471 - trunk/boost/algorithm/cxx11
From: marshall_at_[hidden]
Date: 2012-05-14 12:40:55


Author: marshall
Date: 2012-05-14 12:40:54 EDT (Mon, 14 May 2012)
New Revision: 78471
URL: http://svn.boost.org/trac/boost/changeset/78471

Log:
Removed extra include of <algorithm>, thanks to Michel Morin for the catch
Text files modified:
   trunk/boost/algorithm/cxx11/partition_point.hpp | 3 +--
   1 files changed, 1 insertions(+), 2 deletions(-)

Modified: trunk/boost/algorithm/cxx11/partition_point.hpp
==============================================================================
--- trunk/boost/algorithm/cxx11/partition_point.hpp (original)
+++ trunk/boost/algorithm/cxx11/partition_point.hpp 2012-05-14 12:40:54 EDT (Mon, 14 May 2012)
@@ -14,14 +14,13 @@
 
 #include <algorithm> // for std::partition_point, if available
 
-#include <algorithm> // for std::partition_point, if available
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 
 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 )


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk