We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following parses fine:
struct foo { unsigned int bf : 1; };
but this does not:
typedef unsigned int uint; struct foo { uint bf : 1; };