summaryrefslogtreecommitdiff
path: root/www/make_cxx_dr_status
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2013-12-05 07:51:02 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2013-12-05 07:51:02 +0000
commitfb8139fbf765f0c10b102d6fcd0d911d4c384d08 (patch)
treeea77523282f5699184c30c157b9d9605ad1f8e20 /www/make_cxx_dr_status
parent4157d6440a5d1e40b73f578e606fc16ec8761d65 (diff)
downloadclang-fb8139fbf765f0c10b102d6fcd0d911d4c384d08.tar.gz
Implement DR482: namespace members can be redeclared with a qualified name
within their namespace, and such a redeclaration isn't required to be a definition any more. Update DR status page to say Clang 3.4 instead of SVN and add new Clang 3.5 category (but keep Clang 3.4 yellow for now). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@196481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/make_cxx_dr_status')
-rwxr-xr-xwww/make_cxx_dr_status5
1 files changed, 4 insertions, 1 deletions
diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status
index 4750e1b2cb..54f3b7e208 100755
--- a/www/make_cxx_dr_status
+++ b/www/make_cxx_dr_status
@@ -101,9 +101,12 @@ def availability(issue):
if status == 'unknown':
avail = 'Unknown'
avail_style = ' class="none"'
- elif status == '3.4':
+ elif status == '3.5':
avail = 'SVN'
avail_style = ' class="svn"'
+ elif status == '3.4':
+ avail = 'Clang %s' % status
+ avail_style = ' class="svn"'
elif status in ('3.1', '3.2', '3.3'):
avail = 'Clang %s' % status
avail_style = ' class="full"'