diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-24 02:59:57 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-24 02:59:57 +0330 |
commit | 7847178e34d567eb566d71b551a82dd36d15ea99 (patch) | |
tree | 5f678f9a4411b9c0b836a4cea4d80b1666dc6ca1 /src/compiler/ast-tree.h | |
parent | 07e5fc400493093cd03493ef469b9b97fa1fe87a (diff) |
fix circular imports
Diffstat (limited to 'src/compiler/ast-tree.h')
-rw-r--r-- | src/compiler/ast-tree.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler/ast-tree.h b/src/compiler/ast-tree.h index ce24f6d..b1cd722 100644 --- a/src/compiler/ast-tree.h +++ b/src/compiler/ast-tree.h @@ -281,8 +281,7 @@ AstTreeVariables copyAstTreeVariables(AstTreeVariables variables, size_t variables_size); AstTreeRoots makeAstTree(const char *filePath); -AstTreeRoot *getAstTreeRoot(char *filePath, AstTreeRoots *roots, - char ***filePathes); +AstTreeRoot *getAstTreeRoot(char *filePath, AstTreeRoots *roots); AstTreeRoot *makeAstRoot(ParserNode *parsedRoot, char *filePath); bool pushVariable(AstTreeHelper *helper, AstTreeVariables *variables, |