std::shared_ptr::~shared_ptr
From Cppreference
< cpp | memory | shared ptr
~shared_ptr();
|
||
If *this owns an object and it is the last shared_ptr owning it, the object is destroyed through the owned deleter. Otherwise does nothing.
[edit] Example
This section is incomplete |