OS: Linux Debian
Built version: 6585
Language: C
Hello guys,
I have an issue with autocompletion.
First I show you a simple example code where the porblem occurs:
struct object_x {
	int a;
};
struct object_y {
	int b;
	struct object_x x;
};
//Here's the problem
int main()
{
        struct object_y o_y;
        o_y. ---->	b
               ----> emtpy, no 'x' is shown.
}
Autocompletion doesn't show member x of struct object_y, why? A bug failing to parse a struct object within a struct?
If it's a bug, can someone please report it? I don't have an acount and I will sure forget it etc.
I than ignore the problem for now, and hope it will be fixed soon when updating C::B.
If not, can anyone please give me fix?
Thank you.