Namespaces
Variants
Views
Actions

std::pmr::polymorphic_allocator::destroy

From cppreference.com
 
 
Dynamic memory management
Uninitialized storage
(C++17)
Garbage collection support
Miscellaneous
(C++20)
(C++11)
(C++11)
C Library
Low level memory management
 
 
template<class U>
void destroy(U* p);
(since C++17)

Destroys the object pointed to by p, as if by calling p->~U().

[edit] Parameters

p - pointer to the object being destroyed

[edit] See also

[static]
destructs an object stored in the allocated storage
(function template) [edit]