From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14907 invoked by alias); 18 Mar 2003 19:16:01 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 14888 invoked by uid 71); 18 Mar 2003 19:16:01 -0000 Date: Tue, 18 Mar 2003 19:16:00 -0000 Message-ID: <20030318191601.14859.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: "Giovanni Bajo" Subject: Re: c++/10133: public/protected member of template base class is not seen in derived template class. Reply-To: "Giovanni Bajo" X-SW-Source: 2003-03/txt/msg01227.txt.bz2 List-Id: The following reply was made to PR c++/10133; it has been noted by GNATS. From: "Giovanni Bajo" To: , , , , Cc: Subject: Re: c++/10133: public/protected member of template base class is not seen in derived template class. Date: Tue, 18 Mar 2003 20:10:59 +0100 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