//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // class scoped_allocator_adaptor // size_type max_size() const; #include #include #include "allocators.h" int main() { #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES { typedef std::scoped_allocator_adaptor> A; const A a(A1(100)); assert(a.max_size() == 100); } { typedef std::scoped_allocator_adaptor, A2> A; const A a(A1(20), A2()); assert(a.max_size() == 20); } { typedef std::scoped_allocator_adaptor, A2, A3> A; const A a(A1(200), A2(), A3()); assert(a.max_size() == 200); } #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES }