Opened 13 years ago
Closed 12 years ago
#3721 closed Bugs (fixed)
list::sort() doesn't work if value traits are stateful
Reported by: | anonymous | Owned by: | Ion Gaztañaga |
---|---|---|---|
Milestone: | Boost 1.45.0 | Component: | intrusive |
Version: | Boost 1.41.0 | Severity: | Problem |
Keywords: | Cc: |
Description
list::sort() uses temporary lists, constructed in this way:
list_impl carry; list_impl counter[64];
the list_impl constructor takes the value traits of the list as an optional argument, which must be passed in case the value traits are stateful.
I think it should be
list_impl carry(get_real_value_traits());
Change History (1)
comment:1 by , 12 years ago
Milestone: | Boost 1.42.0 → Boost-1.45.0 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fixed for Boost 1.45 in release branch