Skip to content

Commit

Permalink
Cxx,refactor: convert a bool field to a bit field
Browse files Browse the repository at this point in the history
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
  • Loading branch information
masatake committed Dec 1, 2022
1 parent fe0c93a commit 99d7fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsers/cxx/cxx_token.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ typedef struct _CXXToken
vString * pszWord;
CXXKeyword eKeyword;
CXXTokenChain * pChain; // this is NOT the parent chain!
bool bFollowedBySpace;
unsigned int bFollowedBySpace: 1;

int iLineNumber;
MIOPos oFilePosition;
Expand Down

0 comments on commit 99d7fc5

Please sign in to comment.