Opened 9 years ago
Closed 9 years ago
#8927 closed Bugs (fixed)
boost::partition takes ForwardRange, while calls std::partition which takes Bidirectional on C++98
Reported by: | Owned by: | Neil Groves | |
---|---|---|---|
Milestone: | Boost 1.56.0 | Component: | range |
Version: | Boost 1.54.0 | Severity: | Problem |
Keywords: | Cc: |
Description
boost::partition takes ForwardRange: http://www.boost.org/doc/libs/1_54_0/libs/range/doc/html/range/reference/algorithms/mutating/partition.html , http://www.boost.org/doc/libs/1_54_0/boost/range/algorithm/partition.hpp
While it calls std::partition which takes Bidirectional Iterators on C++98. (C++11 version takes ForwardIterator)
Change History (3)
comment:1 by , 9 years ago
Status: | new → assigned |
---|
comment:2 by , 9 years ago
Milestone: | To Be Determined → Boost 1.56.0 |
---|
comment:3 by , 9 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
.qbk has been merged to master - html will be removed and docs generated by build before 1.56
Note:
See TracTickets
for help on using tickets.
Add a comment in the documentation about the extra restriction imposed by the standard library in older versions.
This has been committed to the develop branch in the .qbk file.