aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-14 21:15:42 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-14 21:15:42 +0200
commit267bf7fc3562fb87c28541b79af4a375fa7b22e4 (patch)
treebbe5544f745efa35c2b601c6dd4c8008e49bb900
parent69f9bed7bf1773f6dec07606abd4105ca4b90b4a (diff)
Don’t hardcode _AST_LAST_ENT
-rw-r--r--src/parser.h2
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_;