Page 1 of 1

Autocompletion for nested anonimous unions/structs

Posted: Fri Nov 19, 2010 11:45 pm
by zuzu
For example:

Code: Select all

typedef struct
{
	int type;

	union {
		int vint;

		struct {
			char *vstr;
			size_t vstr_len;
		};
	};

} MyData;
CodeLite v2.8.0.4537

Autocompletion not works with the "vstr" and "vstr_len".
It is possible to fix it?

Thank you in advance
Greetings

Re: Autocompletion for nested anonimous unions/structs

Posted: Sat Nov 20, 2010 1:10 am
by eranif
All of those will be fixed once I will integrate clang code-completion in codelite, be patient :D

Eran

Re: Autocompletion for nested anonimous unions/structs

Posted: Sat Nov 20, 2010 6:10 pm
by zuzu
Ok thanks! :D