id summary reporter owner description type status milestone component version severity resolution keywords cc 9367 Minor typo in Boost.Algorithm oss.2012.team+2013C@… Marshall Clow "Patch attached for fixing it. Additional comments: In `ordered-hpp.qbk`, the iterator requirements for `is_sorted` say The is_sorted functions will work on all kinds of iterators (except output iterators). So I think it would be better to use `InputIterator` rather than `Iterator` for template parameters: {{{ #!diff Index: libs/algorithm/doc/ordered-hpp.qbk =================================================================== --- libs/algorithm/doc/ordered-hpp.qbk (revision 86541) +++ libs/algorithm/doc/ordered-hpp.qbk (working copy) @@ -19,11 +19,11 @@ `` namespace boost { namespace algorithm { - template - bool is_sorted ( Iterator first, Iterator last, Pred p ); + template + bool is_sorted ( InputIterator first, InputIterator last, Pred p ); - template - bool is_sorted ( Iterator first, Iterator last ); + template + bool is_sorted ( InputIterator first, InputIterator last ); template }}} Ditto for is_decreasing/increasing and is_strictly_decreasing/increasing. In `is_sorted.hpp`, the DOXYGEN comments for `is_sorted` use `ForwardIterator`. Is that a typo of `InputIterator`? Ditto for is_decreasing/increasing and is_strictly_decreasing/increasing. " Bugs new To Be Determined algorithm Boost Development Trunk Cosmetic