This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [google] Remove unqualified lookups which break clang (issue4439085)


On 05/02/2011 05:19 PM, Paolo Carlini wrote:
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>;
Gosh, c++/24163

Paolo.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]