Files
clang-p2996/libcxx/docs/Cxx2bStatusPaperStatus.csv
Arthur O'Dwyer dd15c2723c [libc++] [P1518R2] Better CTAD behavior for containers with allocators.
P1518 does the following in C++23 but we'll just do it in C++17 as well:
- Stop requiring `Alloc` to be an allocator on some container-adaptor deduction guides
- Stop deducing from `Allocator` on some sequence container constructors
- Stop deducing from `Allocator` on some other container constructors (libc++ already did this)

The affected constructors are the "allocator-extended" versions of
constructors where the non-allocator arguments are already sufficient
to deduce the allocator type. For example,

    std::pmr::vector<int> v1;
    std::vector v2(v1, std::pmr::new_delete_resource());
    std::stack s2(v1, std::pmr::new_delete_resource());

Differential Revision: https://reviews.llvm.org/D97742
2021-06-18 15:54:46 -04:00

1.4 KiB

1Paper #GroupPaper NameMeetingStatusFirst released version
2`P0881R7 <https://wg21.link/P0881R7>`__LWGA Proposal to add stacktrace libraryAutumn 2020
3`P0943R6 <https://wg21.link/P0943R6>`__LWGSupport C atomics in C++Autumn 2020
4`P1048R1 <https://wg21.link/P1048R1>`__LWGA proposal for a type trait to detect scoped enumerationsAutumn 2020|Complete|12.0
5`P1679R3 <https://wg21.link/P1679R3>`__LWGstring contains functionAutumn 2020|Complete|12.0
6
7`P1682R3 <https://wg21.link/P1682R3>`__LWGstd::to_underlying for enumerationsFebruary 2021|Complete|13.0
8`P2017R1 <https://wg21.link/P2017R1>`__LWGConditionally borrowed rangesFebruary 2021
9`P2160R1 <https://wg21.link/P2160R1>`__LWGLocks lock lockablesFebruary 2021
10`P2162R2 <https://wg21.link/P2162R2>`__LWGInheriting from std::variantFebruary 2021|Complete|13.0
11`P2212R2 <https://wg21.link/P2212R2>`__LWGRelax Requirements for time_point::clockFebruary 2021
12`P2259R1 <https://wg21.link/P2259R1>`__LWGRepairing input range adaptors and counted_iteratorFebruary 2021
13
14`P1518R2 <https://wg21.link/P1518R2>`__LWGStop overconstraining allocators in container deduction guidesJune 2021|Complete|13.0
15