This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/10133: public/protected member of template base class is not seen in derived template class.
- From: "Giovanni Bajo" <giovannibajo at libero dot it>
- To: <gcc-gnats at gcc dot gnu dot org>,<gcc-bugs at gcc dot gnu dot org>,<carlo at alinoe dot com>,<nobody at gcc dot gnu dot org>,<gcc-prs at gcc dot gnu dot org>
- Date: Tue, 18 Mar 2003 20:10:59 +0100
- Subject: Re: c++/10133: public/protected member of template base class is not seen in derived template class.
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&p
r=10133
Not a bug. Base template classes are not in the default lookup. 3.4 is right
about this, other versions are wrong. Usual "workaround" is using
this->member.
Giovanni Bajo