Opened 12 years ago
Closed 12 years ago
#4604 closed Bugs (fixed)
Support for Associative Sequences in fusion::push_back
Reported by: | Owned by: | Joel de Guzman | |
---|---|---|---|
Milestone: | Boost 1.45.0 | Component: | fusion |
Version: | Boost 1.44.0 | Severity: | Problem |
Keywords: | Cc: |
Description
According to fusion documentation, result of fusion::push_back is a model of Associative Sequence if its sequence parameter implements the Associative Sequence model. However, this is not the case as fusion::push_back constructs a fusion::joint_view<seq, fusion::single_view<val> const>. This joint view is only associative iff both of its underlying sequences are. The fusion::single_view is not associative, though.
Change History (1)
comment:1 by , 12 years ago
Milestone: | To Be Determined → Boost-1.45.0 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fixed in [65060]