diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-25 23:03:52 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-25 23:03:52 +0330 |
commit | e2fc93a2985b1085048a07753e7c93b23abf06ed (patch) | |
tree | 3068c1894e6c13e69901d1bef59c66b0af2014af /src/compiler/ast-tree.h | |
parent | b945815a225c3efdef5df03af52f921f98f9ed90 (diff) |
fix memory leaks
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r-- | src/compiler/ast-tree.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); |