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

Header: <scoped_allocator>

Reports the maximum allocation size supported by the outer allocator, by calling std::allocator_traits::max_size(outer_allocator()).

# Declarations

size_type max_size() const;

(since C++11)

# Return value

The maximum allocation size for OuterAlloc.

# See also