diff options
author | Mark Mitchell <mark@markmitchell.com> | 1998-08-24 12:07:58 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1998-08-24 12:07:58 +0000 |
commit | b19abc2818fd0036e8c5b14f1c2e1d3531fc9572 (patch) | |
tree | bf8961d7f13482950172f3c64e4fb4160094b917 | |
parent | c92366fb3f2247423f12d29e9f52b5335cbda6f2 (diff) | |
download | gcc-b19abc2818fd0036e8c5b14f1c2e1d3531fc9572.zip gcc-b19abc2818fd0036e8c5b14f1c2e1d3531fc9572.tar.gz gcc-b19abc2818fd0036e8c5b14f1c2e1d3531fc9572.tar.bz2 |
* pt.c (process_template_parm): Undo previous change.
From-SVN: r21946
-rw-r--r-- | gcc/cp/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/cp/pt.c | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 6af7e8a..3297c38 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -2,7 +2,8 @@ * cp-tree.h (CLASS_TYPE_P): New macro. * decl.c (grokdeclarator): Use it instead of IS_AGGR_TYPE. - + * pt.c (process_template_parm): Undo previous change. + 1998-08-24 Benjamin Kosnik <bkoz@cygnus.com> * cp-tree.h: Declare. diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index e76c509..1bf232e 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -1610,7 +1610,6 @@ process_template_parm (list, next) else { t = make_lang_type (TEMPLATE_TYPE_PARM); - IS_AGGR_TYPE (t) = 0; /* parm is either IDENTIFIER_NODE or NULL_TREE */ decl = build_decl (TYPE_DECL, parm, t); } |