This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: problem with a structure nested within a template [solved]
- From: "Paul Ianna" <paulianna2002 at gmail dot com>
- To: "Young, Michael" <Michael dot Young at paetec dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Tue, 21 Nov 2006 14:59:40 -0500
- Subject: Re: problem with a structure nested within a template [solved]
You should be able to write the following and get rid of this problem...
typename C1<U>::Node* pNode;
That solved it, Michael. Thanks. Now I am off to do a little
homework to better understand why it was necessary.