diff --git a/clang/www/cxx_dr_status.html b/clang/www/cxx_dr_status.html index b13401625a6fb..0b810b50c529c 100755 --- a/clang/www/cxx_dr_status.html +++ b/clang/www/cxx_dr_status.html @@ -11076,7 +11076,7 @@

C++ defect report implementation status

1878 CD4 operator auto template - Clang 18 + Clang 18 1879 @@ -12384,7 +12384,7 @@

C++ defect report implementation status

2096 CD4 Constraints on literal unions - Duplicate of 2598 + Duplicate of 2598 2097 @@ -15396,7 +15396,7 @@

C++ defect report implementation status

2598 C++23 Unions should not require a non-static data member of literal type - Clang 18 + Clang 18 2599 @@ -15726,7 +15726,7 @@

C++ defect report implementation status

2653 C++23 Can an explicit object parameter have a default argument? - Clang 18 + Clang 18 2654 @@ -15840,7 +15840,7 @@

C++ defect report implementation status

2672 DR Lambda body SFINAE is still required, contrary to intent and note - Clang 18 + Clang 18 2673 @@ -15930,7 +15930,7 @@

C++ defect report implementation status

2687 C++23 Calling an explicit object member function via an address-of-overload-set - Clang 18 + Clang 18 2688 @@ -16542,7 +16542,7 @@

C++ defect report implementation status

2789 DR Overload resolution with implicit and explicit object member functions - Clang 18 + Clang 18 2790 diff --git a/clang/www/cxx_status.html b/clang/www/cxx_status.html index 301f141b2f2b6..421b3426b006f 100755 --- a/clang/www/cxx_status.html +++ b/clang/www/cxx_status.html @@ -115,7 +115,7 @@

C++2c implementation status

Unevaluated strings P2361R6 - Clang 18 + Clang 18 Add @, $, and ` to the basic character set @@ -145,13 +145,13 @@

C++2c implementation status

Placeholder variables with no name P2169R4 - Clang 18 + Clang 18 Template parameter initialization P2308R1 (DR) - Clang 18 + Clang 18 Pack Indexing @@ -161,7 +161,7 @@

C++2c implementation status

Remove Deprecated Arithmetic Conversion on Enumerations P2864R2 - Clang 18 + Clang 18 @@ -239,7 +239,7 @@

C++23 implementation status

Deducing this P0847R7 - Clang 18 + Clang 18 P2797R0 diff --git a/clang/www/make_cxx_dr_status b/clang/www/make_cxx_dr_status index 38f847cdc1b7f..7183e1a6d2be1 100755 --- a/clang/www/make_cxx_dr_status +++ b/clang/www/make_cxx_dr_status @@ -1,6 +1,7 @@ #! /usr/bin/env python3 import sys, os, re, urllib.request +latest_release = 18 clang_www_dir = os.path.dirname(__file__) default_issue_list_path = os.path.join(clang_www_dir, 'cwg_index.html') @@ -127,8 +128,6 @@ out_file.write('''\ Available in Clang? ''') -latest_release = 17 - class AvailabilityError(RuntimeError): pass