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:
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
-
eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
-
Contact:
Post
by eranif »
All of those will be fixed once I will integrate clang code-completion in codelite, be patient
Eran
-
zuzu
- CodeLite Enthusiast
- Posts: 11
- Joined: Tue Jan 12, 2010 9:27 pm
- Genuine User: Yes
- IDE Question: C++
-
Contact:
Post
by zuzu »
Ok thanks!