diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-06-14 21:15:42 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-06-14 21:15:42 +0200 |
commit | 267bf7fc3562fb87c28541b79af4a375fa7b22e4 (patch) | |
tree | bbe5544f745efa35c2b601c6dd4c8008e49bb900 /src | |
parent | 69f9bed7bf1773f6dec07606abd4105ca4b90b4a (diff) |
Don’t hardcode _AST_LAST_ENT
Diffstat (limited to 'src')
-rw-r--r-- | src/parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h index 6780e24..7883722 100644 --- a/src/parser.h +++ b/src/parser.h @@ -49,7 +49,7 @@ enum { ‘lhs - rhs’ */ ASTBINSUB = '-', - _AST_LAST_ENT = 256, + _AST_LAST_ENT, }; typedef uint8_t ast_kind_t_; |