diff options
author | Paolo Carlini <pcarlini@suse.de> | 2007-09-28 17:52:22 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2007-09-28 17:52:22 +0000 |
commit | 930a1e6372869fa553130c5e7fa22c27485b7ec5 (patch) | |
tree | ad1245feef5f67328e823f959b51c262f3064ce4 /gcc/cp/error.c | |
parent | 18080e8e7a3e8881c1efb52edd79a2626584a580 (diff) | |
download | gcc-930a1e6372869fa553130c5e7fa22c27485b7ec5.tar.gz |
re PR c++/33213 (Broken diagnostic: 'type_pack_expansion' not supported by dump_decl)
cp/
2007-09-28 Paolo Carlini <pcarlini@suse.de>
PR c++/33213
* error.c (dump_decl): Deal with TYPE_PACK_EXPANSION.
testsuite/
2007-09-28 Paolo Carlini <pcarlini@suse.de>
PR c++/33213
* g++.dg/cpp0x/variadic79.C: New.
From-SVN: r128870
Diffstat (limited to 'gcc/cp/error.c')
-rw-r--r-- | gcc/cp/error.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cp/error.c b/gcc/cp/error.c index feb6c31c544..5f78a1bea6b 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -955,6 +955,7 @@ dump_decl (tree t, int flags) break; case UNBOUND_CLASS_TEMPLATE: + case TYPE_PACK_EXPANSION: dump_type (t, flags); break; |