llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Vlad Serebrennikov (Endilll) <details> <summary>Changes</summary> 052f2f8cd17f3ff8bcb7b53a777a232d9ac36965 accidentally changed the status of CWG2947 from "Clang 23" to "No", because the test was missing the special comment that `make_cxx_dr_status` scripts consumes. This PR adds the special comments and restores the original status of CWG2947. --- Full diff: https://github.com/llvm/llvm-project/pull/181832.diff 2 Files Affected: - (modified) clang/test/CXX/drs/cwg2947.cpp (+2) - (modified) clang/www/cxx_dr_status.html (+5-1) ``````````diff diff --git a/clang/test/CXX/drs/cwg2947.cpp b/clang/test/CXX/drs/cwg2947.cpp index d6fba84c0ff3d..ba1ceb7125564 100644 --- a/clang/test/CXX/drs/cwg2947.cpp +++ b/clang/test/CXX/drs/cwg2947.cpp @@ -32,6 +32,8 @@ // RUN: %clang_cc1 -std=c++26 %t/cwg2947_ext2.cpp -fsyntax-only -verify // RUN: %clang_cc1 -std=c++26 %t/cwg2947_ext3.cpp -fsyntax-only -verify +// cwg2947: 23 open 2024-10-29 + //--- cwg2947_example1.cpp // #define DOT_BAR .bar export module foo DOT_BAR; // error: expansion of DOT_BAR; does not begin with ; or [ diff --git a/clang/www/cxx_dr_status.html b/clang/www/cxx_dr_status.html index 2404941de772e..bde112bac23e6 100755 --- a/clang/www/cxx_dr_status.html +++ b/clang/www/cxx_dr_status.html @@ -20446,7 +20446,11 @@ <h2 id="cxxdr">C++ defect report implementation status</h2> <td>[<a href="https://wg21.link/cpp.module">cpp.module</a>]</td> <td>open</td> <td>Limiting macro expansion in <I>pp-module</I></td> - <td align="center">Not resolved</td> + <td align="center"> + <details> + <summary>Not resolved</summary> + Clang 23 implements 2024-10-29 resolution + </details></td> </tr> <tr class="open" id="2948"> <td><a href="https://cplusplus.github.io/CWG/issues/2948.html">2948</a></td> `````````` </details> https://github.com/llvm/llvm-project/pull/181832 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
