This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: [google] Remove unqualified lookups which break clang (issue4439085)
- From: Paolo Carlini <paolo dot carlini at oracle dot com>
- To: Ollie Wild <aaw at google dot com>
- Cc: reply at codereview dot appspotmail dot com, gcc-patches at gcc dot gnu dot org, libstdc++ at gcc dot gnu dot org, Jason Merrill <jason at redhat dot com>
- Date: Mon, 02 May 2011 17:19:57 +0200
- Subject: Re: [google] Remove unqualified lookups which break clang (issue4439085)
- References: <20110502143448.5CBBD5F886@wpgntat-ubiq14.hot.corp.google.com> <BANLkTi=mo2uNp=wNine=emXJ6K2W3U1vUg@mail.gmail.com> <4DBEC67D.8070500@oracle.com>
On 05/02/2011 04:58 PM, Paolo Carlini wrote:
Why nobody noticed so far? Is there a latent C++ front-end bug? Please
double check (the last time, I took care of filing the corresponding
C++ front-end issue)
-- Jason,
is it known that we accept the below?
Paolo.
//////////////////
template<typename T>
struct base
{
void bar(T) { }
};
template<typename T>
struct derived
: base<T>
{
void
foo(T t)
{ bar(t); }
};
template class derived<int>;