From 350f6c40fa18c35bde9489225175c82de44ba709 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 22 Mar 2025 16:36:18 +0200 Subject: use maps in scope --- src/move.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/move.c') diff --git a/src/move.c b/src/move.c index dc50cac..602b620 100644 --- a/src/move.c +++ b/src/move.c @@ -270,8 +270,8 @@ static int mvcheck_proc(struct state *state, struct ast *node) static int total_check_single(struct state *state, struct scope *scope) { int ret = 0; - foreach_visible(n, scope->symbols) { - struct ast *def = n->node; + foreach(visible, n, &scope->symbols) { + struct ast *def = n->data; if (def->k != AST_VAR_DEF) continue; -- cgit v1.2.3