diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-04 00:50:36 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-04 00:50:36 +0330 |
commit | a614d8973bf0eed2d12e49398fb34e234a77ccb3 (patch) | |
tree | 6e91f546c5ac09a361db197ad4a903732ce72e36 /src/runner/runner.h | |
parent | a6abc8734563ba8a1920c760dcb3c0147cb458b9 (diff) |
fix bug in pointer dereferencing
Diffstat (limited to 'src/runner/runner.h')
-rw-r--r-- | src/runner/runner.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runner/runner.h b/src/runner/runner.h index f4b6277..314f6b5 100644 --- a/src/runner/runner.h +++ b/src/runner/runner.h @@ -24,11 +24,11 @@ AstTree *runAstTreeCFunction(AstTree *tree, AstTree **arguments, AstTree *runExpression(AstTree *expr, AstTreeScope *scope, bool *shouldRet, bool isLeft, bool isComptime, u32 *breakCount, - bool *shouldContinue, bool needOwnership); + bool *shouldContinue); AstTree *getForVariable(AstTree *expr, AstTreeScope *scope, bool *shouldRet, bool isLeft, bool isComptime, u32 *breakCount, - bool *shouldContinue, bool isLazy, bool needOwnership); + bool *shouldContinue, bool isLazy); bool discontinue(bool shouldRet, u32 breakCount); |