diff options
| author | 2026-03-01 11:07:45 +0100 | |
|---|---|---|
| committer | 2026-03-01 11:09:02 +0100 | |
| commit | 1ebf3669f92e7ea0cf9ef97e4d61ee24db2f0b6a (patch) | |
| tree | 3bd215daa826a93f3dc488909ea45bcd4c47c5cc /c/lex.h | |
| parent | 80177ee3b38b9ab7ce6bc5c5ab9bec8f431ef77a (diff) | |
cpp: fix token spacing (#2) (hopefully)
Diffstat (limited to 'c/lex.h')
| -rw-r--r-- | c/lex.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -57,7 +57,8 @@ struct token { blue : 1, /* preprocessor token painted blue */ extwarn : 1; /* warn this keyword token is an extension */ uchar wide : 2, /* for CHRLIT & STRLIT; 1 -> 16bit, 2 -> 32bit */ - wideuni : 1; /* ditto, 0 -> 'L', 1 -> 'u'/'U' (C11) */ + wideuni : 1, /* ditto, 0 -> 'L', 1 -> 'u'/'U' (C11) */ + space : 1; /* preceded by whitespace? */ union { uint len; ushort argidx; |