From d074a0bfccaa10cbf7b93dac1e140c390a2fc2c7 Mon Sep 17 00:00:00 2001 From: Bill King <bill.king@nokia.com> Date: Fri, 11 Jun 2010 13:37:24 +1000 Subject: [PATCH] Fix single bit value cannot be signed, change to match declarations elsewhere. --- src/libs/cplusplus/SimpleLexer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libs/cplusplus/SimpleLexer.h b/src/libs/cplusplus/SimpleLexer.h index f3af52b6b68..7b55e8f43ae 100644 --- a/src/libs/cplusplus/SimpleLexer.h +++ b/src/libs/cplusplus/SimpleLexer.h @@ -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; }; -- GitLab