From 6004f8eabb1a41e735a0e28d9b9b93c516526fb7 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 25 Aug 2025 01:28:31 -0400 Subject: Less public --- src/parse/binops.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/parse/binops.c') diff --git a/src/parse/binops.c b/src/parse/binops.c index cbbdd44d..e70bcd7e 100644 --- a/src/parse/binops.c +++ b/src/parse/binops.c @@ -36,7 +36,6 @@ int op_tightness[] = { [Xor] = 1, }; -public ast_e match_binary_operator(const char **pos) { switch (**pos) { case '+': { @@ -85,7 +84,6 @@ ast_e match_binary_operator(const char **pos) { } } -public ast_t *parse_infix_expr(parse_ctx_t *ctx, const char *pos, int min_tightness) { ast_t *lhs = optional(ctx, &pos, parse_term); if (!lhs) return NULL; -- cgit v1.2.3