From: Lukas Jiriste Date: Thu, 1 Aug 2024 14:12:00 +0000 (+0200) Subject: Remove printing the parsing tree X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=32af09d1afb9f13768787256dd997d920004c4d6;p=42%2Fminishell.git Remove printing the parsing tree It seems to be unnecessary now. --- diff --git a/src/parsing.c b/src/parsing.c index 02193dd..a350de5 100644 --- a/src/parsing.c +++ b/src/parsing.c @@ -6,7 +6,7 @@ /* By: ljiriste +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/05/03 15:58:55 by ljiriste #+# #+# */ -/* Updated: 2024/06/21 16:32:50 by ljiriste ### ########.fr */ +/* Updated: 2024/08/01 16:10:45 by ljiriste ### ########.fr */ /* */ /* ************************************************************************** */ @@ -21,7 +21,6 @@ int parse(t_vec *tokens, t_tree **parse_tree) ft_parsing_table_init(&table); ft_parsing_table_load(&table, "shell_parsing_table", "shell_rules"); *parse_tree = ft_parse(tokens, &table); - ft_parse_tree_print(*parse_tree); ft_parsing_table_free(&table); return (0); }