From: Hans Wennborg Date: Wed, 13 Jan 2016 23:48:11 +0000 (+0000) Subject: Merging r257652 and r257695: X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87be85827c3675b6f86faf95a4f868889046812c;p=clang Merging r257652 and r257695: ------------------------------------------------------------------------ r257652 | hans | 2016-01-13 11:14:03 -0800 (Wed, 13 Jan 2016) | 1 line Update cxx_dr_status.html after the 3.8 branch ------------------------------------------------------------------------ ------------------------------------------------------------------------ r257695 | rsmith | 2016-01-13 14:51:59 -0800 (Wed, 13 Jan 2016) | 2 lines Update make_cxx_dr_status after the 3.8 branch. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_38@257714 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/cxx_dr_status.html b/www/cxx_dr_status.html index 6b63fb21cf..2a4d0e11d9 100644 --- a/www/cxx_dr_status.html +++ b/www/cxx_dr_status.html @@ -2483,7 +2483,7 @@ of class templates 407 C++11 Named class with associated typedef: two names or one? - SVN + Clang 3.8 408 diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status index bb3007f432..fe484284c1 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.8': + elif status == '3.9': avail = 'SVN' avail_style = ' class="svn"' - elif status in ('3.1', '3.2', '3.3', '3.4', '3.5', '3.6', '3.7'): + elif status.startswith('3.'): avail = 'Clang %s' % status avail_style = ' class="full"' elif status == 'yes':