diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-10 14:41:52 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-10 14:41:52 +0000 |
commit | a761e730bb6fa25293d16e45213a3621bb24977c (patch) | |
tree | cb163c410364b6ab4bc35b3a454234d937f3e087 /gcc/cp/ChangeLog | |
parent | a60f18404f1ec85c32d94bfbd6210b534f5ce0c4 (diff) | |
download | gcc-a761e730bb6fa25293d16e45213a3621bb24977c.tar.gz |
PR c++/24139
* decl.c (grokdeclarator): Do not require template parameter lists
for explicitly specialized class.
* error.c (dump_aggr_type): Do not dump template arguments for
non-primary specializations.
(dump_function_name): Likewise.
PR c++/24139
* g++.dg/template/spec27.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105172 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/ChangeLog')
-rw-r--r-- | gcc/cp/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4055464a28a..87d52996bf9 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,17 @@ +2005-10-10 Mark Mitchell <mark@codesourcery.com> + + PR c++/24139 + * decl.c (grokdeclarator): Do not require template parameter lists + for explicitly specialized class. + * error.c (dump_aggr_type): Do not dump template arguments for + non-primary specializations. + (dump_function_name): Likewise. + + PR c++/24275 + * pt.c (instantiate_decl): Instantiate the initializer of + a static data member in the namespace containing the class + containing the static data member. + 2005-10-08 James A. Morrison <phython@gcc.gnu.org> PR c++/22172 |