Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78466 - trunk/boost/algorithm/cxx11
From: marshall_at_[hidden]
Date: 2012-05-14 00:58:25


Author: marshall
Date: 2012-05-14 00:58:22 EDT (Mon, 14 May 2012)
New Revision: 78466
URL: http://svn.boost.org/trac/boost/changeset/78466

Log:
Added missing includes of <algorithm>, thanks to Michel Morin for the catch
Text files modified:
   trunk/boost/algorithm/cxx11/all_of.hpp | 1 +
   trunk/boost/algorithm/cxx11/any_of.hpp | 1 +
   trunk/boost/algorithm/cxx11/none_of.hpp | 1 +
   trunk/boost/algorithm/cxx11/partition_copy.hpp | 1 +
   trunk/boost/algorithm/cxx11/partition_point.hpp | 1 +
   5 files changed, 5 insertions(+), 0 deletions(-)

Modified: trunk/boost/algorithm/cxx11/all_of.hpp
==============================================================================
--- trunk/boost/algorithm/cxx11/all_of.hpp (original)
+++ trunk/boost/algorithm/cxx11/all_of.hpp 2012-05-14 00:58:22 EDT (Mon, 14 May 2012)
@@ -12,6 +12,7 @@
 #ifndef BOOST_ALGORITHM_ALL_OF_HPP
 #define BOOST_ALGORITHM_ALL_OF_HPP
 
+#include <algorithm> // for std::all_of, if available
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 

Modified: trunk/boost/algorithm/cxx11/any_of.hpp
==============================================================================
--- trunk/boost/algorithm/cxx11/any_of.hpp (original)
+++ trunk/boost/algorithm/cxx11/any_of.hpp 2012-05-14 00:58:22 EDT (Mon, 14 May 2012)
@@ -14,6 +14,7 @@
 #ifndef BOOST_ALGORITHM_ANY_OF_HPP
 #define BOOST_ALGORITHM_ANY_OF_HPP
 
+#include <algorithm> // for std::any_of, if available
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 

Modified: trunk/boost/algorithm/cxx11/none_of.hpp
==============================================================================
--- trunk/boost/algorithm/cxx11/none_of.hpp (original)
+++ trunk/boost/algorithm/cxx11/none_of.hpp 2012-05-14 00:58:22 EDT (Mon, 14 May 2012)
@@ -12,6 +12,7 @@
 #ifndef BOOST_ALGORITHM_NONE_OF_HPP
 #define BOOST_ALGORITHM_NONE_OF_HPP
 
+#include <algorithm> // for std::none_of, if available
 #include <boost/range/begin.hpp>
 #include <boost/range/end.hpp>
 

Modified: trunk/boost/algorithm/cxx11/partition_copy.hpp
==============================================================================
--- trunk/boost/algorithm/cxx11/partition_copy.hpp (original)
+++ trunk/boost/algorithm/cxx11/partition_copy.hpp 2012-05-14 00:58:22 EDT (Mon, 14 May 2012)
@@ -12,6 +12,7 @@
 #ifndef BOOST_ALGORITHM_PARTITION_COPY_HPP
 #define BOOST_ALGORITHM_PARTITION_COPY_HPP
 
+#include <algorithm> // for std::partition_copy, if available
 #include <utility> // for make_pair
 
 #include <boost/range/begin.hpp>

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 00:58:22 EDT (Mon, 14 May 2012)
@@ -14,6 +14,7 @@
 
 #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>
 


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