std::pmr::polymorphic_allocator<T>::allocate

Allocates storage for n objects of type T using the underlying memory resource. Equivalent to return static_cast<T*>(resource()->allocate(n * sizeof(T), alignof(T)));.

# Declarations

T* allocate( std::size_t n );

(since C++17)

# Parameters

# Return value

A pointer to the allocated storage.

# Defect reports

DRApplied toBehavior as publishedCorrect behavior
LWG 3038C++17allocate might allocate storage of wrong sizethrows length_error instead
LWG 3237C++17the exception thrown by allocate was inconsistent with std::allocator::allocatemade consistent

# See also