summaryrefslogtreecommitdiff
path: root/gcc/cp/ChangeLog
diff options
context:
space:
mode:
authorabutcher <abutcher@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-12 20:17:44 +0000
committerabutcher <abutcher@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-12 20:17:44 +0000
commit520877fb31003ff8a00dd5f1170849dd15d8f4e8 (patch)
tree87f7a8f525ae28a29777c7a6bfc9ad0639e235df /gcc/cp/ChangeLog
parent19646b27a9d7436cda1724746425f1eb36499705 (diff)
downloadgcc-520877fb31003ff8a00dd5f1170849dd15d8f4e8.tar.gz
Support implicit parameter packs.
* pt.c (convert_generic_types_to_packs): New function to transform a range of implicitly introduced non-pack template parms to be parameter packs. * cp-tree.h (convert_generic_types_to_packs): Declare. * parser.c (cp_parser_parameter_declaration_list): If a function parameter pack contains generic types, convert them to packs prior to grokdeclarator. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204715 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/ChangeLog')
-rw-r--r--gcc/cp/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 3f7eb1aa9e2..c85345eb270 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,5 +1,15 @@
2013-11-12 Adam Butcher <adam@jessamine.co.uk>
+ * pt.c (convert_generic_types_to_packs): New function to transform
+ a range of implicitly introduced non-pack template parms to be parameter
+ packs.
+ * cp-tree.h (convert_generic_types_to_packs): Declare.
+ * parser.c (cp_parser_parameter_declaration_list): If a function
+ parameter pack contains generic types, convert them to packs prior to
+ grokdeclarator.
+
+2013-11-12 Adam Butcher <adam@jessamine.co.uk>
+
PR c++/58534
PR c++/58536
PR c++/58548