Skip to content

Commit e0cb340

Browse files
authored
[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.
1 parent 01797da commit e0cb340

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

clang/www/cxx_dr_status.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12653,7 +12653,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2>
1265312653
<td><a href="https://cplusplus.github.io/CWG/issues/2141.html">2141</a></td>
1265412654
<td>CD4</td>
1265512655
<td>Ambiguity in <I>new-expression</I> with <I>elaborated-type-specifier</I></td>
12656-
<td class="unreleased" align="center">Clang 17</td>
12656+
<td class="full" align="center">Clang 17</td>
1265712657
</tr>
1265812658
<tr id="2142">
1265912659
<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>
1418914189
<td><a href="https://cplusplus.github.io/CWG/issues/2397.html">2397</a></td>
1419014190
<td>CD6</td>
1419114191
<td><TT>auto</TT> specifier for pointers and references to arrays</td>
14192-
<td class="unreleased" align="center">Clang 17</td>
14192+
<td class="full" align="center">Clang 17</td>
1419314193
</tr>
1419414194
<tr class="open" id="2398">
1419514195
<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>
1491514915
<td><a href="https://cplusplus.github.io/CWG/issues/2518.html">2518</a></td>
1491614916
<td>C++23</td>
1491714917
<td>Conformance requirements and <TT>#error</TT>/<TT>#warning</TT></td>
14918-
<td class="unreleased" align="center">Clang 17</td>
14918+
<td class="full" align="center">Clang 17</td>
1491914919
</tr>
1492014920
<tr id="2519">
1492114921
<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>
1493314933
<td><a href="https://cplusplus.github.io/CWG/issues/2521.html">2521</a></td>
1493414934
<td>C++23</td>
1493514935
<td>User-defined literals and reserved identifiers</td>
14936-
<td class="unreleased" align="center">Clang 17</td>
14936+
<td class="full" align="center">Clang 17</td>
1493714937
</tr>
1493814938
<tr class="open" id="2522">
1493914939
<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>
1589315893
<td><a href="https://cplusplus.github.io/CWG/issues/2681.html">2681</a></td>
1589415894
<td>C++23</td>
1589515895
<td>Deducing member array type from string literal</td>
15896-
<td class="unreleased" align="center">Clang 17</td>
15896+
<td class="full" align="center">Clang 17</td>
1589715897
</tr>
1589815898
<tr id="2682">
1589915899
<td><a href="https://cplusplus.github.io/CWG/issues/2682.html">2682</a></td>

clang/www/make_cxx_dr_status

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ out_file.write('''\
126126
<th>Available in Clang?</th>
127127
</tr>''')
128128

129-
latest_release = 16
129+
latest_release = 17
130130

131131
def availability(issue):
132132
status = status_map.get(issue, 'unknown')

0 commit comments

Comments
 (0)