std::experimental::pmr::unsynchronized_pool_resource::do_allocate

Allocates storage.

# Declarations

virtual void* do_allocate( std::size_t bytes, std::size_t alignment );

(library fundamentals TS)

# Return value

A pointer to allocated storage of at least bytes bytes in size, aligned to the specified alignment if such alignment is supported, and to alignof(std::max_align_t) otherwise.

# See also