std::scoped_allocator_adaptor<OuterAlloc,InnerAlloc...>::deallocate

Header: <scoped_allocator>

Uses the outer allocator to deallocate the storage referenced by p, by calling std::allocator_traits::deallocate(outer_allocator(), p, n).

# Declarations

void deallocate( pointer p, size_type n ) noexcept;

(since C++11)

# Parameters

# Return value

(none)

# See also