diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-03-03 11:31:35 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-03-03 11:31:35 +0100 |
commit | ea1d5503a4911d380a3ae9f98516497c9cb0c681 (patch) | |
tree | 5867d417a9e35c3b2dc91b612c572467af727f55 /src/shared/cplusplus/Token.h | |
parent | 63c012a2420f6547c234ad84b027288966e091c0 (diff) | |
download | qt-creator-ea1d5503a4911d380a3ae9f98516497c9cb0c681.tar.gz |
Added a bit to annotate the generated tokens.
Diffstat (limited to 'src/shared/cplusplus/Token.h')
-rw-r--r-- | src/shared/cplusplus/Token.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/cplusplus/Token.h b/src/shared/cplusplus/Token.h index 5892584e8f..260eaac43d 100644 --- a/src/shared/cplusplus/Token.h +++ b/src/shared/cplusplus/Token.h @@ -312,7 +312,8 @@ public: unsigned whitespace : 1; unsigned joined : 1; unsigned expanded : 1; - unsigned pad : 4; + unsigned generated : 1; + unsigned pad : 3; unsigned length : 16; }; }; |