From: Hans Wennborg Date: Tue, 14 Jul 2015 23:21:53 +0000 (+0000) Subject: Update cxx_dr_status.html after 3.7 branch X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c6a91d5eefff9f99e8ccb7af15a419fd63c637eb;p=clang Update cxx_dr_status.html after 3.7 branch git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242244 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/cxx_dr_status.html b/www/cxx_dr_status.html index eaea88ca86..0c5339176a 100644 --- a/www/cxx_dr_status.html +++ b/www/cxx_dr_status.html @@ -1811,7 +1811,7 @@ of class templates 295 CD1 cv-qualifiers on function types - SVN + Clang 3.7 296 @@ -4681,7 +4681,7 @@ and POD class 777 CD2 Default arguments and parameter packs - SVN + Clang 3.7 778 @@ -5503,7 +5503,7 @@ and POD class 948 C++11 constexpr in conditions - SVN + Clang 3.7 949 @@ -8617,7 +8617,7 @@ and POD class 1467 DR List-initialization of aggregate from same-type object - SVN (C++11 onwards) + Clang 3.7 (C++11 onwards) 1468 @@ -8755,7 +8755,7 @@ and POD class 1490 DR List-initialization from a string literal - SVN (C++11 onwards) + Clang 3.7 (C++11 onwards) 1491 @@ -9349,7 +9349,7 @@ and POD class 1589 DR Ambiguous ranking of list-initialization sequences - SVN (C++11 onwards) + Clang 3.7 (C++11 onwards) 1590 @@ -9601,7 +9601,7 @@ and POD class 1631 DR Incorrect overload resolution for single-element initializer-list - SVN (C++11 onwards) + Clang 3.7 (C++11 onwards) 1632 @@ -10303,7 +10303,7 @@ and POD class 1748 DR Placement new with a null pointer - SVN + Clang 3.7 1749 @@ -10351,7 +10351,7 @@ and POD class 1756 DR Direct-list-initialization of a non-class object - SVN (C++11 onwards) + Clang 3.7 (C++11 onwards) 1757 @@ -10363,7 +10363,7 @@ and POD class 1758 DR Explicit conversion in copy/move list initialization - SVN (C++11 onwards) + Clang 3.7 (C++11 onwards) 1759 @@ -11227,7 +11227,7 @@ and POD class 1902 DR What makes a conversion “otherwise ill-formed”? - SVN + Clang 3.7 1903 diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status index db316353e0..bb3007f432 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.7': + elif status == '3.8': avail = 'SVN' avail_style = ' class="svn"' - elif status in ('3.1', '3.2', '3.3', '3.4', '3.5', '3.6'): + elif status in ('3.1', '3.2', '3.3', '3.4', '3.5', '3.6', '3.7'): avail = 'Clang %s' % status avail_style = ' class="full"' elif status == 'yes':