Autocompletion for nested anonimous unions/structs
Posted: Fri Nov 19, 2010 11:45 pm
For example:
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
Code: Select all
typedef struct
{
int type;
union {
int vint;
struct {
char *vstr;
size_t vstr_len;
};
};
} MyData;
Autocompletion not works with the "vstr" and "vstr_len".
It is possible to fix it?
Thank you in advance
Greetings