aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-family/ChangeLog
diff options
context:
space:
mode:
authorVille Voutilainen <ville.voutilainen@gmail.com>2015-09-21 18:50:30 +0300
committerVille Voutilainen <ville@gcc.gnu.org>2015-09-21 18:50:30 +0300
commitbdaaa8b70f8e76b2743ee7bafc438e499411753f (patch)
treea0c9ebca3ca8e137ea972254b66af70b0fc63155 /gcc/c-family/ChangeLog
parent87b470b3635a5f8aaf9c6d4d21945d06d3379a6b (diff)
downloadgcc-bdaaa8b70f8e76b2743ee7bafc438e499411753f.zip
gcc-bdaaa8b70f8e76b2743ee7bafc438e499411753f.tar.gz
gcc-bdaaa8b70f8e76b2743ee7bafc438e499411753f.tar.bz2
Complete the implementation of N4230, Nested namespace definition.
/c-family 2015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com> Complete the implementation of N4230, Nested namespace definition. * c-cppbuiltin.c: Add __cpp_namespace_attributes and __cpp_nested_namespace_definitions. /cp 2015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com> Complete the implementation of N4230, Nested namespace definition. * parser.c (cp_parser_namespace_definition): Support namespace attributes both before and after the namespace identifier. /testsuite 2015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com> Complete the implementation of N4230, Nested namespace definition. * g++.dg/cpp1y/feat-cxx11-neg.C: Add tests for C++17 namespace attributes and nested namespace definitions. * g++.dg/cpp1y/feat-cxx98-neg.C: Likewise. * g++.dg/cpp1z/feat-cxx1z.C: Likewise. * g++.dg/cpp1y/feat-cxx14-neg.C: New. * g++.dg/cpp1z/namespace-attribs.C: Likewise. * g++.dg/cpp1z/nested-namespace-def1.C: Add tests for attributes appearing before the namespace identifier. From-SVN: r227977
Diffstat (limited to 'gcc/c-family/ChangeLog')
-rw-r--r--gcc/c-family/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index b45b53e..5fa1a72 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,9 @@
+2015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com>
+
+ Complete the implementation of N4230, Nested namespace definition.
+ * c-cppbuiltin.c: Add __cpp_namespace_attributes and
+ __cpp_nested_namespace_definitions.
+
2015-09-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
* c-pragma.c (handle_pragma_diagnostic): Fix wrong return.