From: Richard Smith Date: Tue, 3 Sep 2019 17:49:51 +0000 (+0000) Subject: [www] Mark items complete in Clang 9 as 'Clang 9' rather than 'SVN'. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=15b5fc9dd66a8a1d52c4158ead7d69df92a8aeb2;p=clang [www] Mark items complete in Clang 9 as 'Clang 9' rather than 'SVN'. Don't turn the boxes green yet, since Clang 9 hasn't been released. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@370795 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/cxx_dr_status.html b/www/cxx_dr_status.html index a8172eb43d..487d6fb2d9 100755 --- a/www/cxx_dr_status.html +++ b/www/cxx_dr_status.html @@ -9955,19 +9955,19 @@ and POD class 1690 C++14 Associated namespace for local type - SVN + Clang 9 1691 C++14 Argument-dependent lookup and opaque enumerations - SVN + Clang 9 1692 C++14 Associated namespaces of doubly-nested classes - SVN + Clang 9 1693 @@ -10147,7 +10147,7 @@ and POD class 1722 CD4 Should lambda to function pointer conversion function be noexcept? - SVN + Clang 9 1723 @@ -10483,7 +10483,7 @@ and POD class 1778 C++14 exception-specification in explicitly-defaulted functions - SVN + Clang 9 1779 @@ -11047,7 +11047,7 @@ and POD class 1872 CD4 Instantiations of constexpr templates that cannot appear in constant expressions - SVN + Clang 9 1873 @@ -12655,7 +12655,7 @@ and POD class 2140 CD4 Lvalue-to-rvalue conversion of std::nullptr_t - SVN + Clang 9 2141 @@ -12835,7 +12835,7 @@ and POD class 2170 DR Unclear definition of odr-use for arrays - SVN + Clang 9 2171 @@ -13567,7 +13567,7 @@ and POD class 2292 DRWP simple-template-id is ambiguous between class-name and type-name - SVN + Clang 9 2293 @@ -13933,7 +13933,7 @@ and POD class 2353 DR Potential results of a member access expression for a static data member - SVN + Clang 9 2354 @@ -14131,13 +14131,13 @@ and POD class 2386 DR tuple_size requirements for structured binding - Unknown + Clang 9 2387 DR Linkage of const-qualified variable template - SVN + Clang 9 2388 diff --git a/www/cxx_status.html b/www/cxx_status.html index d3d610914d..a3e567824d 100755 --- a/www/cxx_status.html +++ b/www/cxx_status.html @@ -114,7 +114,7 @@ with libc++ or with gcc's libstdc++. P1009R2 (DR) - SVN + Clang 9 Static assertions @@ -289,7 +289,7 @@ with libc++ or with gcc's libstdc++. P1286R2 (DR) - SVN + Clang 9 Deleted functions @@ -664,7 +664,7 @@ version 3.7. P1771R1 (DR) - SVN + Clang 9 [[maybe_unused]] attribute @@ -866,17 +866,17 @@ as the draft C++2a standard evolves. P1042R1 - SVN + Clang 9 Designated initializers P0329R4 - SVN (Clang 10) + SVN template-parameter-list for generic lambdas P0428R2 - SVN + Clang 9 Concepts @@ -910,7 +910,7 @@ as the draft C++2a standard evolves. ADL and function templates that are not visible P0846R0 - SVN + Clang 9 const mismatch with defaulted copy constructor @@ -957,7 +957,7 @@ as the draft C++2a standard evolves. [[no_unique_address]] attribute P0840R2 - SVN + Clang 9 [[likely]] and [[unlikely]] attributes @@ -972,7 +972,7 @@ as the draft C++2a standard evolves. Pack expansion in lambda init-capture P0780R2 - SVN + Clang 9 @@ -988,7 +988,7 @@ as the draft C++2a standard evolves. Relaxations of constexpr restrictions P1064R0 - SVN + Clang 9 P1002R1 @@ -996,7 +996,7 @@ as the draft C++2a standard evolves. P1327R1 - SVN + Clang 9 P1330R0 @@ -1007,7 +1007,7 @@ as the draft C++2a standard evolves. P1668R1 - SVN + Clang 9 P0784R7 @@ -1026,13 +1026,13 @@ as the draft C++2a standard evolves. explicit(bool) P0892R2 - SVN + Clang 9 Signed integers are two's complement P1236R1 - SVN + Clang 9 char8_t @@ -1047,7 +1047,7 @@ as the draft C++2a standard evolves. std::is_constant_evaluated P0595R2 - SVN + Clang 9 Nested inline namespaces @@ -1100,7 +1100,7 @@ as the draft C++2a standard evolves. Deprecate a[b,c] P1161R3 - SVN + Clang 9 Deprecate some problematic uses of volatile @@ -1110,7 +1110,7 @@ as the draft C++2a standard evolves. [[nodiscard("with reason")]] P1301R4 - SVN + Clang 9 using enum diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status index 2d7c1f3202..ff4a3f5c1b 100755 --- a/www/make_cxx_dr_status +++ b/www/make_cxx_dr_status @@ -108,9 +108,12 @@ def availability(issue): if status == 'unknown': avail = 'Unknown' avail_style = ' class="none"' - elif status == '9': + elif status == '10': avail = 'SVN' avail_style = ' class="svn"' + elif status == '9': + avail = 'Clang 9' + avail_style = ' class="svn"' elif re.match('^[0-9]+\.?[0-9]*', status): avail = 'Clang %s' % status avail_style = ' class="full"'