From: Hans Wennborg Date: Wed, 27 Jul 2016 16:39:45 +0000 (+0000) Subject: Update cxx_dr_Status after 3.9 branch X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c2bb4e4173b2511e8991593d3c856f423465dbb;p=clang Update cxx_dr_Status after 3.9 branch git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@276887 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/cxx_dr_status.html b/www/cxx_dr_status.html index c1c7ea5f5b..0e9af71f40 100644 --- a/www/cxx_dr_status.html +++ b/www/cxx_dr_status.html @@ -7315,7 +7315,7 @@ and POD class 1250 CD3 Cv-qualification of incomplete virtual function return types - SVN + Clang 3.9 1251 @@ -9253,7 +9253,7 @@ and POD class 1573 DRWP Inherited constructor characteristics - SVN + Clang 3.9 1574 @@ -9289,7 +9289,7 @@ and POD class 1579 C++14 Return by converting move constructor - Unknown + Clang 3.9 1580 @@ -9685,7 +9685,7 @@ and POD class 1645 DR Identical inheriting constructors via default arguments - SVN + Clang 3.9 1646 @@ -10105,7 +10105,7 @@ and POD class 1715 DR Access and inherited constructor templates - SVN + Clang 3.9 1716 @@ -10231,7 +10231,7 @@ and POD class 1736 DR Inheriting constructor templates in a local class - SVN + Clang 3.9 1737 @@ -11461,7 +11461,7 @@ and POD class 1941 DR SFINAE and inherited constructor default arguments - SVN + Clang 3.9 1942 @@ -11569,7 +11569,7 @@ and POD class 1959 DR Inadvertently inherited copy constructor - SVN + Clang 3.9 1960 @@ -11761,7 +11761,7 @@ and POD class 1991 DR Inheriting constructors vs default arguments - SVN + Clang 3.9 1992 diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status index fe484284c1..9a679ed9f5 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.9': + elif status == '4.0': avail = 'SVN' avail_style = ' class="svn"' - elif status.startswith('3.'): + elif re.match('^[0-9]+\.', status): avail = 'Clang %s' % status avail_style = ' class="full"' elif status == 'yes':