diff options
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); |