Defined in header <scoped_allocator> | ||
---|---|---|
template< class T > void destroy( T* p ); | (since C++11) |
Uses the outer allocator to call the destructor of the object pointed to by p
, by calling.
std::allocator_traits<OUTERMOST>::destroy(OUTERMOST(*this), p)
.
where OUTERMOST is the type that would be returned by calling this->outer_allocator()
, and then calling the outer_allocator()
member function recursively on the result of this call until reaching the type that has no such member function.
p | - | pointer to the object that is going to be destroyed |
(none).
[static] | destructs an object stored in the allocated storage (function template) |
(deprecated in C++17)(removed in C++20) | destructs an object in allocated storage (public member function of std::allocator<T> ) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/memory/scoped_allocator_adaptor/destroy