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

> 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 		 	   		  

Back to the top