From: Richard Smith Date: Wed, 28 Feb 2018 03:02:07 +0000 (+0000) Subject: Update cxx_status to mark "SVN" items as "Clang 6" instead. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a983b00e82645ae99f45211c4fa1c1d547b230e;p=clang Update cxx_status to mark "SVN" items as "Clang 6" instead. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@326298 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/cxx_status.html b/www/cxx_status.html index ed9a339c17..10a4cdabe0 100644 --- a/www/cxx_status.html +++ b/www/cxx_status.html @@ -799,22 +799,22 @@ as the draft C++2a standard evolves. Default member initializers for bit-fields P0683R1 - SVN + Clang 6 const&-qualified pointers to members P0704R1 - SVN + Clang 6 Allow lambda-capture [=, this] P0409R2 - SVN + Clang 6 __VA_OPT__ for preprocessor comma elision P0306R4 - SVN + Clang 6 Designated initializers @@ -829,7 +829,7 @@ as the draft C++2a standard evolves. Initializer list constructors in class template argument deduction P0702R1 - SVN (13) + Clang 6 (13) Concepts diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status index 5fe7b9f887..164ae9919f 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 == '6': + elif status == '7': avail = 'SVN' avail_style = ' class="svn"' + elif status == '6': + avail = 'Clang 6' + avail_style = ' class="svn"' elif re.match('^[0-9]+\.?[0-9]*', status): avail = 'Clang %s' % status avail_style = ' class="full"'