Fixed typos in comments; no functionality; Refs #7210

[SVN r79928]
This commit is contained in:
Marshall Clow
2012-08-08 16:27:17 +00:00
parent cabff10be7
commit 9b412cdf6f
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