Autocomplete and unions doesn't seem to be working.
Posted: Sat Sep 28, 2019 12:55 am
Trying to get autocomplete to work with unions.
Example code:
union
{
uint8_t a[25];
uint8_t b[10];
uint8_t c[5];
} example;
Codelite doesn't complete the union name or find the members.
Example code:
union
{
uint8_t a[25];
uint8_t b[10];
uint8_t c[5];
} example;
Codelite doesn't complete the union name or find the members.