std::shared_ptr::~shared_ptr

From Cppreference

Jump to: navigation, search
~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

[edit] See also