From e2fc93a2985b1085048a07753e7c93b23abf06ed Mon Sep 17 00:00:00 2001 From: A404M Date: Sat, 25 Jan 2025 23:03:52 +0330 Subject: fix memory leaks --- src/compiler/ast-tree.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/compiler/ast-tree.h') diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h index ae97ca2..e92cb08 100644 --- a/src/compiler/ast-tree.h +++ b/src/compiler/ast-tree.h @@ -68,6 +68,7 @@ void astTreePrint(const AstTree *tree, int indent); void astTreeRootPrint(const AstTreeRoot *root); void astTreeDestroy(AstTree tree); +void astTreeVariableDestroy(AstTreeVariable variable); void astTreeDelete(AstTree *tree); void astTreeRootDelete(AstTreeRoot *root); -- cgit v1.2.3