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

Header: <scoped_allocator>

Uses the outer allocator to allocate uninitialized storage.

# Declarations

pointer allocate( size_type n );

(since C++11)

pointer allocate( size_type n, const_void_pointer hint );

(since C++11)

# Parameters

# Return value

The pointer to the allocated storage.

# See also