Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] nested class inheritance problem

ok, it's here: https://bugs.eclipse.org/bugs/show_bug.cgi?id=422401

thx

On Sunday 24 Nov 2013 02:02:22 Nathan Ridge wrote:
> > I have the following problem:
> > 
> > struct A {
> > struct B {
> > };
> > };
> > 
> > struct C : public A {
> > struct D: public // do I really have to use a qualified name?
> > };
> > 
> > When I try to get some code assist on struct D, I don't get any proposals
> > unless I use A:: as a qualifier.
> > 
> > Is this a bug, or am I misunderstanding something?
> 
> The above code is valid. CDT not providing a completion
> is a bug in CDT. Please file a bug report for it.
> 
> Thanks,
> Nate
> _______________________________________________
> cdt-dev mailing list
> cdt-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/cdt-dev


Back to the top