Opened 14 years ago
Closed 14 years ago
#2313 closed Bugs (fixed)
multi_index_container::operator= should have by-value argument
Reported by: | niels_dekker | Owned by: | Joaquín M López Muñoz |
---|---|---|---|
Milestone: | Boost 1.37.0 | Component: | multi_index |
Version: | Boost 1.36.0 | Severity: | Problem |
Keywords: | Cc: | niels_dekker |
Description
When a copy assignment operator is implemented simply by doing copy-and-swap, it should pass its argument by value, instead of doing the copy inside the body of the function, to allow the compiler to do copy elision. As was discussed at the Boost developer mailing list, Improving the assignment operators of various Boost types.
So please consider the attached patch.
Attachments (1)
Change History (3)
by , 14 years ago
Attachment: | multi_index_container_assignment.patch added |
---|
comment:1 by , 14 years ago
Component: | None → multi_index |
---|---|
Owner: | set to |
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [48728]) fixed #2313