[libcxx-commits] [libcxx] 963b771 - [libc++] Mark [P0475] "LWG2511: guaranteed copy elision for piecewise construction" as Complete.
    Arthur O'Dwyer via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Fri Jan  8 14:34:11 PST 2021
    
    
  
Author: Arthur O'Dwyer
Date: 2021-01-08T17:33:13-05:00
New Revision: 963b771e24caff502d6b5d9b2f72dd88dd56e97a
URL: https://github.com/llvm/llvm-project/commit/963b771e24caff502d6b5d9b2f72dd88dd56e97a
DIFF: https://github.com/llvm/llvm-project/commit/963b771e24caff502d6b5d9b2f72dd88dd56e97a.diff
LOG: [libc++] Mark [P0475] "LWG2511: guaranteed copy elision for piecewise construction" as Complete.
The point of LWG2511 is basically just to make sure that we use
`tuple<Args&&...>` instead of `tuple<Args...>` in a couple of places
inside `scoped_allocator_adaptor` and inside `pair`.
As far as I can tell, this has been true for libc++
since EricWF's D27612 (and maybe even earlier than that).
Added: 
    
Modified: 
    libcxx/docs/Cxx2aStatusPaperStatus.csv
Removed: 
    
################################################################################
diff  --git a/libcxx/docs/Cxx2aStatusPaperStatus.csv b/libcxx/docs/Cxx2aStatusPaperStatus.csv
index c2a84a4b4353..57edb5992dbf 100644
--- a/libcxx/docs/Cxx2aStatusPaperStatus.csv
+++ b/libcxx/docs/Cxx2aStatusPaperStatus.csv
@@ -28,7 +28,7 @@
 "","","","","",""
 "`P0019R8 <https://wg21.link/P0019R8>`__","LWG","Atomic Ref","Rapperswil","",""
 "`P0458R2 <https://wg21.link/P0458R2>`__","LWG","Checking for Existence of an Element in Associative Containers","Rapperswil","|Complete|",""
-"`P0475R1 <https://wg21.link/P0475R1>`__","LWG","LWG 2511: guaranteed copy elision for piecewise construction","Rapperswil","",""
+"`P0475R1 <https://wg21.link/P0475R1>`__","LWG","LWG 2511: guaranteed copy elision for piecewise construction","Rapperswil","|Complete|",""
 "`P0476R2 <https://wg21.link/P0476R2>`__","LWG","Bit-casting object representations","Rapperswil","",""
 "`P0528R3 <https://wg21.link/P0528R3>`__","CWG","The Curious Case of Padding Bits, Featuring Atomic Compare-and-Exchange","Rapperswil","",""
 "`P0542R5 <https://wg21.link/P0542R5>`__","CWG","Support for contract based programming in C++","Rapperswil","*Removed in Cologne*","n/a"
        
    
    
More information about the libcxx-commits
mailing list