diff options
| author | 2025-11-23 10:30:03 +0100 | |
|---|---|---|
| committer | 2025-11-23 15:29:53 +0100 | |
| commit | f4488e9153a4ead6f427902237cca93c67fec2bd (patch) | |
| tree | 1843c095c962e6594b67b1eed749940bc8bac6ab /c/lex.h | |
| parent | 3585a99d9113c9745a68e6b7c067a7b756a50e92 (diff) | |
cpp: fix bugs with recursive macro expansion (hopefully)
Diffstat (limited to 'c/lex.h')
| -rw-r--r-- | c/lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -52,6 +52,7 @@ enum toktag { /* single-character tokens' tag value is the character itself */ struct token { short t; /* toktag */ bool litlit; + uchar blue : 1; /* preprocessor token painted blue */ uchar wide : 2; /* for CHRLIT & STRLIT; 1 -> 16bit, 2 -> 32bit */ uchar wideuni : 1; /* ditto, 0 -> 'L', 1 -> 'u'/'U' (C11) */ uchar extwarn : 1; /* warn this keyword token is an extension */ |