From 753a43b63649a2927fb9bef34fe625f276d92f64 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 11 Sep 2014 17:29:13 +0000 Subject: [PATCH] Update DR status list to reflect that Clang 3.5 has been released. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@217608 91177308-0d34-0410-b5e6-96231b3b80d8 --- www/cxx_dr_status.html | 32 ++++++++++++++++---------------- www/make_cxx_dr_status | 4 ++-- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/www/cxx_dr_status.html b/www/cxx_dr_status.html index 90b1420c15..3ae5fc1473 100644 --- a/www/cxx_dr_status.html +++ b/www/cxx_dr_status.html @@ -321,7 +321,7 @@ 47 NAD Template friend issues - Superseded by 329 + Superseded by 329 48 @@ -645,7 +645,7 @@ 101 TC1 Redeclaration of extern "C" names via using-declarations - SVN + Clang 3.5 102 @@ -993,7 +993,7 @@ 159 TC1 Namespace qualification in declarators - SVN + Clang 3.5 160 @@ -1504,7 +1504,7 @@ accessible? 244 CD1 Destructor lookup - SVN + Clang 3.5 245 @@ -1943,7 +1943,7 @@ of class templates 317 CD1 Can a function be declared inline after it has been called? - SVN + Clang 3.5 318 @@ -2015,7 +2015,7 @@ of class templates 329 CD1 Evaluation of friends of templates - SVN + Clang 3.5 330 @@ -2903,7 +2903,7 @@ of class templates 477 CD1 Can virtual appear in a friend declaration? - SVN + Clang 3.5 478 @@ -2933,7 +2933,7 @@ of class templates 482 CD3 Qualified declarators in redeclarations - SVN + Clang 3.5 483 @@ -3011,7 +3011,7 @@ of class templates 495 CD2 Overload resolution with template and non-template conversion functions - SVN + Clang 3.5 496 @@ -3233,7 +3233,7 @@ of class templates 532 C++11 Member/nonmember operator template partial ordering - SVN + Clang 3.5 533 @@ -3331,7 +3331,7 @@ and POD class 548 dup qualified-ids in declarations - Duplicate of 482 + Duplicate of 482 549 @@ -5755,7 +5755,7 @@ and POD class 990 CD2 Value initialization with multiple initializer-list constructors - SVN + Clang 3.5 991 @@ -6235,7 +6235,7 @@ and POD class 1070 C++11 Missing initializer clauses in aggregate initialization - SVN + Clang 3.5 1071 @@ -7891,7 +7891,7 @@ and POD class 1346 CD3 expression-list initializers and the auto specifier - SVN + Clang 3.5 1347 @@ -8575,7 +8575,7 @@ and POD class 1460 DRWP What is an empty union? - SVN + Clang 3.5 1461 @@ -9175,7 +9175,7 @@ and POD class 1560 CD3 Gratuitous lvalue-to-rvalue conversion in conditional-expression with throw-expression operand - SVN + Clang 3.5 1561 diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status index 82e8abd317..4ae769d074 100755 --- a/www/make_cxx_dr_status +++ b/www/make_cxx_dr_status @@ -102,10 +102,10 @@ def availability(issue): if status == 'unknown': avail = 'Unknown' avail_style = ' class="none"' - elif status == '3.5': + elif status == '3.6': avail = 'SVN' avail_style = ' class="svn"' - elif status in ('3.1', '3.2', '3.3', '3.4'): + elif status in ('3.1', '3.2', '3.3', '3.4', '3.5'): avail = 'Clang %s' % status avail_style = ' class="full"' elif status == 'yes': -- 2.40.0