diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 15:14:37 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 15:14:37 -0400 |
| commit | f5612e38183dc20d18f207f8ab055574a4d93ad0 (patch) | |
| tree | c2caf5a0311b6d9fd0fbd4c08493dac5981088be /src/compile/loops.c | |
| parent | 7f6683269ce689a83b9c6e1fae15e0cc60351095 (diff) | |
Bugfixes for anonymous enums, code cleanup to remove type_to_string(),
and changed it so anonymous enums show up in doctests with their full
type instead of `enum$20`
Diffstat (limited to 'src/compile/loops.c')
| -rw-r--r-- | src/compile/loops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compile/loops.c b/src/compile/loops.c index 332024f4..b68c908f 100644 --- a/src/compile/loops.c +++ b/src/compile/loops.c @@ -355,7 +355,7 @@ Text_t compile_for_loop(env_t *env, ast_t *ast) { return code; } - default: code_err(for_->iter, "Iteration is not implemented for type: ", type_to_str(iter_t)); + default: code_err(for_->iter, "Iteration is not implemented for type: ", type_to_text(iter_t)); } } |
