aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/token.h
diff options
authorLinus Torvalds <torvalds@home.transmeta.com>2003-03-16 22:22:38 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:20 -0700
commit384be0b5bfe426bb3d2efc8b18f0fb8e3de7b098 (patch)
tree963160cd701eadd68ca9dd85be9a7c458dc381bb /token.h
parent9abdc01f8a8183d0e8f0ad7f2d601690136568cd (diff)
downloadsparse-dev-384be0b5bfe426bb3d2efc8b18f0fb8e3de7b098.tar.gz
Tokenize integer constants with "u" and "l" specifiers (drop them for now).
Fix three-character special token (... <<= >>=) tokenization
Diffstat (limited to 'token.h')
-rw-r--r--token.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/token.h b/token.h
index a6a9245d..88b74d11 100644
--- a/token.h
+++ b/token.h
@@ -87,7 +87,7 @@ struct string {
struct token {
unsigned int line;
- unsigned int pos:16,stream:8,len:8;
+ unsigned int pos:16,stream:8;
struct token *next;
enum token_type type;