forked from qt-creator/qt-creator
Fix single bit value cannot be signed, change to match declarations elsewhere.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user