Title
What should happen when an exception is thrown on resizing `std::deque`, `std::forward_list`, or `std::list`?
Status
new
Section
[deque.capacity][forward.list.modifiers][list.capacity]
Submitter
Jiang An

Created on 2025-03-15.00:00:00 last changed 2 weeks ago

Messages

Date: 2025-03-15.00:00:00

Currently, `std::vector` and `std::inplace_vector`'s `resize` functions are specified to have no effects on the container when an exception is throwing on appending. However, such specification seem to be missing for `std::deque`, `std::forward_list`, and `std::list`.

Is such difference intented? Do we want to roll back the status of container when the appending is partially done?

Daniel:

The specific `resize` exception guarantee for `std::vector` came from resolving LWG 2033 and were later effectively copied to `std::inplace_vector` because that container's specification should resemble as much as possible that of `std::vector`.

History
Date User Action Args
2025-03-15 00:00:00admincreate