From e55d725b56b8b00472f0b58996e2f08238285044 Mon Sep 17 00:00:00 2001 From: Maieul BOYER Date: Mon, 22 Jul 2024 13:12:55 +0200 Subject: [PATCH] Fixed Unused Variable --- ast/src/from_node.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ast/src/from_node.c b/ast/src/from_node.c index f99ca291..5422f79a 100644 --- a/ast/src/from_node.c +++ b/ast/src/from_node.c @@ -690,9 +690,6 @@ t_error build_sym_arithmetic_literal(t_parse_node self, t_const_str input, t_ast t_error build_sym_arithmetic_parenthesized_expression(t_parse_node self, t_const_str input, t_ast_node *out) { - t_usize i; - t_ast_node ret; - if (out == NULL) return (ERROR); if (ts_node_symbol(self) != sym_arithmetic_parenthesized_expression)