Author: Vlad Serebrennikov Date: 2023-10-02T22:05:36+04:00 New Revision: e0cb340f8ef77e2fefa42a3d6f4bd9aab42ad660
URL: https://github.com/llvm/llvm-project/commit/e0cb340f8ef77e2fefa42a3d6f4bd9aab42ad660 DIFF: https://github.com/llvm/llvm-project/commit/e0cb340f8ef77e2fefa42a3d6f4bd9aab42ad660.diff LOG: [clang] Bump latest release to 17 for C++ DR Status page (#67996) `make_cxx_dr_status` has a hardcoded number of the latest release, for the purpose of determining whether a particular DR is available to users or not yet. I'm bumping it to 17. Added: Modified: clang/www/cxx_dr_status.html clang/www/make_cxx_dr_status Removed: ################################################################################ diff --git a/clang/www/cxx_dr_status.html b/clang/www/cxx_dr_status.html index 0ca35f1f5679a34..e711b2173d191c1 100755 --- a/clang/www/cxx_dr_status.html +++ b/clang/www/cxx_dr_status.html @@ -12653,7 +12653,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2> <td><a href="https://cplusplus.github.io/CWG/issues/2141.html">2141</a></td> <td>CD4</td> <td>Ambiguity in <I>new-expression</I> with <I>elaborated-type-specifier</I></td> - <td class="unreleased" align="center">Clang 17</td> + <td class="full" align="center">Clang 17</td> </tr> <tr id="2142"> <td><a href="https://cplusplus.github.io/CWG/issues/2142.html">2142</a></td> @@ -14189,7 +14189,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2> <td><a href="https://cplusplus.github.io/CWG/issues/2397.html">2397</a></td> <td>CD6</td> <td><TT>auto</TT> specifier for pointers and references to arrays</td> - <td class="unreleased" align="center">Clang 17</td> + <td class="full" align="center">Clang 17</td> </tr> <tr class="open" id="2398"> <td><a href="https://cplusplus.github.io/CWG/issues/2398.html">2398</a></td> @@ -14915,7 +14915,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2> <td><a href="https://cplusplus.github.io/CWG/issues/2518.html">2518</a></td> <td>C++23</td> <td>Conformance requirements and <TT>#error</TT>/<TT>#warning</TT></td> - <td class="unreleased" align="center">Clang 17</td> + <td class="full" align="center">Clang 17</td> </tr> <tr id="2519"> <td><a href="https://cplusplus.github.io/CWG/issues/2519.html">2519</a></td> @@ -14933,7 +14933,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2> <td><a href="https://cplusplus.github.io/CWG/issues/2521.html">2521</a></td> <td>C++23</td> <td>User-defined literals and reserved identifiers</td> - <td class="unreleased" align="center">Clang 17</td> + <td class="full" align="center">Clang 17</td> </tr> <tr class="open" id="2522"> <td><a href="https://cplusplus.github.io/CWG/issues/2522.html">2522</a></td> @@ -15893,7 +15893,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2> <td><a href="https://cplusplus.github.io/CWG/issues/2681.html">2681</a></td> <td>C++23</td> <td>Deducing member array type from string literal</td> - <td class="unreleased" align="center">Clang 17</td> + <td class="full" align="center">Clang 17</td> </tr> <tr id="2682"> <td><a href="https://cplusplus.github.io/CWG/issues/2682.html">2682</a></td> diff --git a/clang/www/make_cxx_dr_status b/clang/www/make_cxx_dr_status index c44a5910d53daeb..0c1f9c73eff1c82 100755 --- a/clang/www/make_cxx_dr_status +++ b/clang/www/make_cxx_dr_status @@ -126,7 +126,7 @@ out_file.write('''\ <th>Available in Clang?</th> </tr>''') -latest_release = 16 +latest_release = 17 def availability(issue): status = status_map.get(issue, 'unknown') _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits