This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
RE: Problem with forward declaration of classes with nested templates
- From: "John \(Eljay\) Love-Jensen" <eljay at adobe dot com>
- To: "Steven Keuchel" <steven dot keuchel at gmail dot com>, <gcc-help at gcc dot gnu dot org>
- Date: Mon, 25 Sep 2006 15:39:56 -0700
- Subject: RE: Problem with forward declaration of classes with nested templates
- References: <605275a50609251456x42b3ccffge6bbf7461ab4b868@mail.gmail.com>
Hi Steven,
It does not compile for the same reason this does not compile:
-----------------
struct b;
struct a : public b
{};
struct b
{};
-----------------
HTH,
--Eljay