std::scoped_allocator_adaptor<OuterAlloc,InnerAlloc...>::deallocate
Since C++11
void deallocate( pointer p, size_type n ) noexcept;
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)