This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: nested template misclassified
- To: cppljevans at earthlink dot net
- Subject: Re: nested template misclassified
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Thu, 1 Jun 2000 11:25:16 +0200
- CC: bug-gcc at gnu dot org
- References: <3935B8CC.4DBC2F4B@earthlink.net>
> I've looked at the code in pt.c and decl.c for several days now and
> cannot figure how to solve this problem. I'd appreciate any more
> documentation (than that in source code)on how the tree data
> structure (in gcc/tree.h and gcc/cp/cp-tree.h) works.
Please have a look at ir.texi and gxxint.texi. If you study things in
gdb, given a variable decl pointing to some tree, it is quite helpful
to type
p debug_tree(decl)
Regards,
Martin