I just downloaded CodeLite, and I have to say I love it!
I just have one question: it seems that CodeLite is not able to parse a variable, if the variable name is declared as "unsigned", as in the example below:
Code: Select all
void Test()
{
static int8 u8VarA;
int8 u8VarB;
unsigned int8 u8VarC;
}
Any idea on why this happens, and any workaroud available?
Thanks and kind regards
Marco Novaro