Fix single bit value cannot be signed, change to match declarations elsewhere.

This commit is contained in:
Bill King
2010-06-11 13:37:24 +10:00
parent 7f505011b2
commit d074a0bfcc

View File

@@ -101,9 +101,9 @@ public:
short _flags;
struct {
short _newline: 1;
short _whitespace: 1;
short _objcTypeQualifier: 1;
unsigned _newline: 1;
unsigned _whitespace: 1;
unsigned _objcTypeQualifier: 1;
} f;
};