Merged typos in comments to release; no functionality; Fixes #7210

[SVN r79929]
This commit is contained in:
Marshall Clow
2012-08-08 16:30:33 +00:00
parent 314f6dcfe0
commit 7f4acd6170
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
namespace boost { namespace algorithm { namespace boost { namespace algorithm {
#if __cplusplus >= 201103L #if __cplusplus >= 201103L
// Use the C++11 versions of iota if it is available // Use the C++11 versions of is_partitioned if it is available
using std::is_partitioned; // Section 25.3.13 using std::is_partitioned; // Section 25.3.13
#else #else
/// \fn is_partitioned ( InputIterator first, InputIterator last, UnaryPredicate p ) /// \fn is_partitioned ( InputIterator first, InputIterator last, UnaryPredicate p )

View File

@ -27,7 +27,7 @@
namespace boost { namespace algorithm { namespace boost { namespace algorithm {
#if __cplusplus >= 201103L #if __cplusplus >= 201103L
// Use the C++11 versions of iota if it is available // Use the C++11 versions of is_sorted/is_sorted_until if they are available
using std::is_sorted_until; // Section 25.4.1.5 using std::is_sorted_until; // Section 25.4.1.5
using std::is_sorted; // Section 25.4.1.5 using std::is_sorted; // Section 25.4.1.5
#else #else