Consider the following:
std::vector> ptrsToInts;
ptrsToInts.emplace_back(new int);
If reallocation occurs
If reallocation is required and it fails, then yes, your object never went into the container and will thus be lost.
However, it should be noted that this is pure user error. emplace_back
should not be "banned" for containers of unique_ptr
, because there are perfectly safe ways of doing this (such as reserve
ing the space beforehand, so you know it will always be there). Also, you can pass in whole unique_ptr
s, since it's perfectly capable of using a move constructor.
So really, it's your fault for not properly wrapping your non-RAII object (the int*
) in a RAII object before the point where you could throw exceptions.