diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-09 01:32:06 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-09 01:32:06 +0330 |
commit | de52585a1b2736a6a788ebc57000d7496f259e64 (patch) | |
tree | 9fdcf25c5074f850f1fab0658efee0ae7f95599d /src/compiler/ast-tree.h | |
parent | cb26dd0fc9c1e33be1c32eb85b04434526004e6a (diff) |
fix some memory leak
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 9dd2a6a..83b77ef 100644 --- a/src/compiler/ast-tree.h +++ b/src/compiler/ast-tree.h @@ -171,6 +171,7 @@ bool setTypesFunctionCall(AstTree *tree); bool setTypesVariable(AstTree *tree); bool setTypesOperatorAssign(AstTree *tree); bool setTypesOperatorSum(AstTree *tree); +bool setTypesVariableDefine(AstTree *tree); bool setTypesAstVariable(AstTreeVariable *variable); bool setTypesAstInfix(AstTreeInfix *infix); |