From a614d8973bf0eed2d12e49398fb34e234a77ccb3 Mon Sep 17 00:00:00 2001 From: A404M Date: Wed, 4 Jun 2025 00:50:36 +0330 Subject: fix bug in pointer dereferencing --- src/runner/runner.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/runner/runner.h') 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); -- cgit v1.2.3