Commit a50fe46c authored by Hans Wennborg's avatar Hans Wennborg
Browse files

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.

------------------------------------------------------------------------

llvm-svn: 257714
parent 65a604df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>
+2 −2
Original line number Diff line number Diff line
@@ -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':