From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32136 invoked by alias); 2 May 2011 15:33:10 -0000 Received: (qmail 32121 invoked by uid 22791); 2 May 2011 15:33:09 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from smtp207.alice.it (HELO smtp207.alice.it) (82.57.200.103) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 02 May 2011 15:32:55 +0000 Received: from [192.168.1.4] (79.47.194.175) by smtp207.alice.it (8.5.124.08) id 4DB1388701019F1D; Mon, 2 May 2011 17:32:53 +0200 Message-ID: <4DBECE83.3010809@oracle.com> Date: Mon, 02 May 2011 15:33:00 -0000 From: Paolo Carlini User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.14) Gecko/20110221 SUSE/3.1.8 Thunderbird/3.1.8 MIME-Version: 1.0 To: Ollie Wild CC: reply@codereview.appspotmail.com, gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org, Jason Merrill Subject: Re: [google] Remove unqualified lookups which break clang (issue4439085) References: <20110502143448.5CBBD5F886@wpgntat-ubiq14.hot.corp.google.com> <4DBEC67D.8070500@oracle.com> <4DBECB9D.9040003@oracle.com> In-Reply-To: <4DBECB9D.9040003@oracle.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-05/txt/msg00091.txt.bz2 On 05/02/2011 05:19 PM, Paolo Carlini wrote: > template > struct base > { > void bar(T) { } > }; > > template > struct derived > : base > { > void > foo(T t) > { bar(t); } > }; > > template class derived; Gosh, c++/24163 Paolo.