std::scoped_allocator_adaptor<OuterAlloc,InnerAlloc...>:: deallocate
From cppreference.com
<
cpp
|
memory
|
scoped allocator adaptor
C++
Dynamic memory management
|
|
std::scoped_allocator_adaptor
Member functions | ||||
scoped_allocator_adaptor::deallocate
|
||||
Non-member functions | ||||
(until C++20)
|
||||
Deduction guides (C++17) |
Defined in header
<scoped_allocator>
|
||
void
deallocate
(
pointer p, size_type n
)
noexcept
;
|
(since C++11) | |
Uses the outer allocator to deallocate the storage referenced by
p
, by calling
std::
allocator_traits
<
OuterAlloc
>
::
deallocate
(
outer_allocator
(
)
, p, n
)
.
Parameters
p | - | pointer to the previously allocated memory |
n | - | the number of objects for which the memory was allocated |
Return value
(none)
See also
deallocates storage
(public member function of
std::allocator<T>
)
|
|
[static]
|
deallocates storage using the allocator
(public static member function of
std::allocator_traits<Alloc>
)
|
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/memory/scoped_allocator_adaptor/deallocate&oldid=153612
"