FrontC
FrontC copied to clipboard
Fails to parse bitfields involving typedefs
The following parses fine:
struct foo {
unsigned int bf : 1;
};
but this does not:
typedef unsigned int uint;
struct foo {
uint bf : 1;
};