Author: Corentin Jabot Date: 2026-03-28T10:53:17+01:00 New Revision: 64d2f702cee57746b71993ae94d6377d4181bd2f
URL: https://github.com/llvm/llvm-project/commit/64d2f702cee57746b71993ae94d6377d4181bd2f DIFF: https://github.com/llvm/llvm-project/commit/64d2f702cee57746b71993ae94d6377d4181bd2f.diff LOG: [Clang][NFC] Add the list of C++26 papers approved in Kona and Croydon Added: Modified: clang/www/cxx_status.html Removed: ################################################################################ diff --git a/clang/www/cxx_status.html b/clang/www/cxx_status.html index 00ca18bc87635..2b4fc27e1b550 100755 --- a/clang/www/cxx_status.html +++ b/clang/www/cxx_status.html @@ -190,10 +190,14 @@ <h2 id="cxx26">C++2c implementation status</h2> <td class="full" align="center">Clang 19</td> </tr> <tr> - <td>Erroneous behaviour for uninitialized reads</td> + <td rowspan="2">Erroneous behaviour for uninitialized reads</td> <td><a href="https://wg21.link/P2795R5">P2795R5</a></td> <td class="none" align="center">No</td> </tr> + <tr> + <td><a href="https://wg21.link/P3684R1">P3684R1</a></td> + <td class="none" align="center">No</td> + </tr> <tr> <td><tt>= delete("should have a reason");</tt></td> <td><a href="https://wg21.link/P2573R2">P2573R2</a></td> @@ -289,7 +293,7 @@ <h2 id="cxx26">C++2c implementation status</h2> </tr> <!-- Bulgaria, Spring 2025 --> <tr> - <td rowspan="5">Reflection</td> + <td rowspan="6">Reflection</td> <td><a href="https://wg21.link/P2996">P2996R13</a></td> <td class="none" align="center">No</td> </tr> @@ -309,6 +313,10 @@ <h2 id="cxx26">C++2c implementation status</h2> <td><a href="https://wg21.link/P3096">P3096R12</a></td> <td class="none" align="center">No</td> </tr> + <tr> + <td><a href="https://wg21.link/P3598">P3598R0</a></td> + <td class="none" align="center">No</td> + </tr> <tr> <td>Attaching main to the global module</td> <td><a href="https://wg21.link/P3618">P3618R0</a> (<a href="#dr">DR</a>)</td> @@ -318,17 +326,59 @@ <h2 id="cxx26">C++2c implementation status</h2> <td>Expansion Statements</td> <td><a href="https://wg21.link/P1306">P1306R5</a></td> <td class="none" align="center">No</td> - </tr> - <tr> + </tr> + <tr> <td>constexpr virtual inheritance</td> <td><a href="https://wg21.link/P3533">P3533R2</a></td> <td class="none" align="center">No</td> - </tr> - <tr> + </tr> + <tr> <td>Preprocessing is never undefined</td> <td><a href="https://wg21.link/P2843">P2843R3</a></td> <td class="none" align="center">No</td> - </tr> + </tr> + <!-- Kona, Fall 2025--> + <tr> + <td>Allow <tt>#line</tt> before module declarations</td> + <td><a href="https://wg21.link/P3868R1">P3868R1</a></td> + <td class="none" align="center">No</td> + </tr> + <!-- Croydon, Winter 2026--> + <tr> + <td><tt>#line</tt> is not in line with existing implementation</td> + <td><a href="https://wg21.link/P4136R2">P4136R2</a>(<a href="#dr">DR</a>)</td> + <td class="none" align="center">Yes</td> + </tr> + <tr> + <td>Reconsider CWG 1395 "Partial ordering of variadic templates reconsidered"</td> + <td><a href="https://wg21.link/P4004R1">P4004R1</a>(<a href="#dr">DR</a>)</td> + <td class="none" align="center">No</td> + </tr> + <tr> + <td>CTAD for type template template parameters</td> + <td><a href="https://wg21.link/P3865">P3865R3</a>(<a href="#dr">DR</a>)</td> + <td class="none" align="center">No</td> + </tr> + <tr> + <td>Adjustments to Union Lifetime Rules</td> + <td><a href="https://wg21.link/P3726">P3726R2</a></td> + <td class="none" align="center">No</td> + </tr> + <tr> + <td>Constant evaluations fixes</td> + <td><a href="https://wg21.link/P4143">P4143R0</a>(<a href="#dr">DR</a>)</td> + <td class="none" align="center">No</td> + </tr> + <tr> + <td>Define "immediate context"</td> + <td><a href="https://wg21.link/P4149">P4149R1</a>(<a href="#dr">DR</a>)</td> + <td class="none" align="center">No</td> + </tr> + <tr> + <td>Clarification of placement new deallocation</td> + <td><a href="https://wg21.link/P3769">P3769R1</a>(<a href="#dr">DR</a>)</td> + <td class="none" align="center">No</td> + </tr> </table> </details> _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
