diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-22 16:36:18 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-22 16:36:18 +0200 |
commit | 350f6c40fa18c35bde9489225175c82de44ba709 (patch) | |
tree | d010427fb92a59a901c9a90f7a2b6db64484f0c5 /src/move.c | |
parent | 199d1342d76b5cae6503fa0a97322d2658d43b5f (diff) | |
download | fwd-350f6c40fa18c35bde9489225175c82de44ba709.tar.gz fwd-350f6c40fa18c35bde9489225175c82de44ba709.zip |
use maps in scope
Diffstat (limited to 'src/move.c')
-rw-r--r-- | src/move.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |