On this page
std::allocator_traits<Alloc>::deallocate
Defined in header <memory> |
||
|---|---|---|
|
(since C++11) (until C++20) |
|
|
(since C++20) |
Uses the allocator a to deallocate the storage referenced by p, by calling a.deallocate(p, n).
Parameters
| a | - | allocator to use |
| p | - | pointer to the previously allocated storage |
| n | - | the number of objects the storage was allocated for |
Return value
(none)
Example
See also
|
[static]
|
allocates uninitialized storage using the allocator (public static member function) |
| deallocates storage (public member function of std::allocator<T>) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/memory/allocator_traits/deallocate