Merged changes for Boost.Algorithm to release; Fixes #6596; Fixes #6689; Fixes #3215; Fixes #6840

[SVN r78557]
This commit is contained in:
Marshall Clow
2012-05-23 16:25:48 +00:00
parent 76cd99ed53
commit 563fe27a59
7 changed files with 18 additions and 9 deletions

View File

@ -20,7 +20,7 @@
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 )