[libc++] Implement P0591R4 (Utility functions to implement uses-allocator construction)
authorNikolas Klauser <nikolasklauser@berlin.de>
Fri, 30 Sep 2022 09:42:25 +0000 (11:42 +0200)
committerNikolas Klauser <nikolasklauser@berlin.de>
Sat, 1 Oct 2022 13:18:06 +0000 (15:18 +0200)
commit099384dcea49f5f4b0dc7e615c9845bf9baad4bc
treef2d9a137864033f5b5da4b30ffa006722ccd62c3
parente9e3a612ecd18a42f931c09223898128da3142f6
[libc++] Implement P0591R4 (Utility functions to implement uses-allocator construction)

Reviewed By: ldionne, #libc, huixie90

Spies: huixie90, libcxx-commits, mgorny

Differential Revision: https://reviews.llvm.org/D131898
24 files changed:
libcxx/docs/ReleaseNotes.rst
libcxx/docs/Status/Cxx20.rst
libcxx/docs/Status/Cxx20Issues.csv
libcxx/docs/Status/Cxx20Papers.csv
libcxx/docs/Status/ZipProjects.csv
libcxx/include/CMakeLists.txt
libcxx/include/__memory/uses_allocator_construction.h [new file with mode: 0644]
libcxx/include/memory
libcxx/include/module.modulemap.in
libcxx/include/scoped_allocator
libcxx/test/libcxx/private_headers.verify.cpp
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct.pass.cpp
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair.pass.cpp
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_const_lvalue_pair.pass.cpp
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_piecewise.pass.cpp
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_rvalue.pass.cpp
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_values.pass.cpp
libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_type.pass.cpp
libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.construction/common.h [new file with mode: 0644]
libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.construction/make_obj_using_allocator.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.construction/tested_elsewhere.pass.cpp [deleted file]
libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.construction/uninitialized_construct_using_allocator.pass.cpp [new file with mode: 0644]
libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.construction/uses_allocator_construction_args.pass.cpp [new file with mode: 0644]
libcxx/test/support/MoveOnly.h