FrontC icon indicating copy to clipboard operation
FrontC copied to clipboard

Fails to parse bitfields involving typedefs

Open cdisselkoen opened this issue 4 years ago • 0 comments

The following parses fine:

struct foo {
    unsigned int bf : 1;
};

but this does not:

typedef unsigned int uint;
struct foo {
    uint bf : 1;
};

cdisselkoen avatar May 25 '21 22:05 cdisselkoen