std::scoped_allocator_adaptor<OuterAlloc,InnerAlloc...>::deallocate
Min standard notice:
Header: <scoped_allocator>
Uses the outer allocator to deallocate the storage referenced by p, by calling std::allocator_traits
# Declarations
void deallocate( pointer p, size_type n ) noexcept;
(since C++11)
# Parameters
p: pointer to the previously allocated memoryn: the number of objects for which the memory was allocated
# Return value
(none)