Skip to main content

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

Hi guys,

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?

I use CDT nightly and the compiler uses the c++11 standard.

thx Michi


Back to the top