Skip to content
Snippets Groups Projects
Commit d074a0bf authored by Bill King's avatar Bill King
Browse files

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

parent 7f505011
No related branches found
No related tags found
No related merge requests found
...@@ -101,9 +101,9 @@ public: ...@@ -101,9 +101,9 @@ public:
short _flags; short _flags;
struct { struct {
short _newline: 1; unsigned _newline: 1;
short _whitespace: 1; unsigned _whitespace: 1;
short _objcTypeQualifier: 1; unsigned _objcTypeQualifier: 1;
} f; } f;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment