summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-11-14 13:55:12 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2019-11-14 13:55:12 -0500
commite631bb0147147caf36a2b4ef63c7561f8221da02 (patch)
treee2f20e67ac547c7c7f57bdfe44d395595fff1159 /scope.c
parente9bc97fa6f5251d6ebb476e3167b887e098e83ff (diff)
cleaning up some stuff
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scope.c b/scope.c
index b0ebbeb..ab123fe 100644
--- a/scope.c
+++ b/scope.c
@@ -80,7 +80,7 @@ static void fn_exit(FnExpr *f) {
remove_ident_decls(&f->body, decl);
}
-static bool each_enter(Expression *e, U32 flags) {
+static bool each_enter(Expression *e) {
assert(e->kind == EXPR_EACH);
EachExpr *ea = &e->each;
if (ea->index && ea->index == ea->value) {