diff options
| author | June McEnroe <june@causal.agency> | 2021-01-13 15:56:42 -0500 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2021-01-13 15:56:42 -0500 |
| commit | 85e2488ae23a478b2a1d7d025063535f5b770796 (patch) | |
| tree | 02fd64bc8e057ca47d2292775b178d598681d471 /bin | |
| parent | Fix C lexer to require a digit in a float literal (diff) | |
| download | src-85e2488ae23a478b2a1d7d025063535f5b770796.tar.gz src-85e2488ae23a478b2a1d7d025063535f5b770796.zip | |
Match [] as Operator in C lexer
Diffstat (limited to '')
| -rw-r--r-- | bin/c11.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/c11.l b/bin/c11.l index dec4cce5..3c951028 100644 --- a/bin/c11.l +++ b/bin/c11.l @@ -38,7 +38,7 @@ width "*"|[0-9]+ } ([-+*/%&|^=!<>]|"<<"|">>")"="? | -[=~.?:]|"++"|"--"|"&&"|"||"|"->" | +[=~.?:]|"["|"]"|"++"|"--"|"&&"|"||"|"->" | sizeof|(_A|alignof) { return Operator; } |