Autocompletion for nested anonimous unions/structs

General questions regarding the usage of CodeLite
zuzu
CodeLite Enthusiast
Posts: 11
Joined: Tue Jan 12, 2010 9:27 pm
Genuine User: Yes
IDE Question: C++
Contact:

Autocompletion for nested anonimous unions/structs

Post 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
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Autocompletion for nested anonimous unions/structs

Post by eranif »

All of those will be fixed once I will integrate clang code-completion in codelite, be patient :D

Eran
Make sure you have read the HOW TO POST thread
zuzu
CodeLite Enthusiast
Posts: 11
Joined: Tue Jan 12, 2010 9:27 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Autocompletion for nested anonimous unions/structs

Post by zuzu »

Ok thanks! :D
Post Reply