]> granicus.if.org Git - clang/commitdiff
Merging r257652 and r257695:
authorHans Wennborg <hans@hanshq.net>
Wed, 13 Jan 2016 23:48:11 +0000 (23:48 +0000)
committerHans Wennborg <hans@hanshq.net>
Wed, 13 Jan 2016 23:48:11 +0000 (23:48 +0000)
------------------------------------------------------------------------
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

www/cxx_dr_status.html
www/make_cxx_dr_status

index 6b63fb21cf901dd4bca9db5c6ef9e07e29f9f01d..2a4d0e11d9535d43149da1359c316299eea17752 100644 (file)
@@ -2483,7 +2483,7 @@ of class templates</td>
     <td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#407">407</a></td>
     <td>C++11</td>
     <td>Named class with associated typedef: two names or one?</td>
-    <td class="svn" align="center">SVN</td>
+    <td class="full" align="center">Clang 3.8</td>
   </tr>
   <tr id="408">
     <td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#408">408</a></td>
index bb3007f432a53294663131803804de755d201f30..fe484284c189a4a212cebc1092a2a3fedf1effde 100755 (executable)
@@ -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':