aboutsummaryrefslogtreecommitdiff
path: root/src/compile/conditionals.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 15:14:37 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 15:14:37 -0400
commitf5612e38183dc20d18f207f8ab055574a4d93ad0 (patch)
treec2caf5a0311b6d9fd0fbd4c08493dac5981088be /src/compile/conditionals.c
parent7f6683269ce689a83b9c6e1fae15e0cc60351095 (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/conditionals.c')
-rw-r--r--src/compile/conditionals.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compile/conditionals.c b/src/compile/conditionals.c
index f9dfa751..7fcd6cc8 100644
--- a/src/compile/conditionals.c
+++ b/src/compile/conditionals.c
@@ -26,7 +26,7 @@ Text_t compile_condition(env_t *env, ast_t *ast) {
code_err(ast, "This pointer will always be non-none, so it should not be "
"used in a conditional.");
} else {
- code_err(ast, type_to_str(t), " values cannot be used for conditionals");
+ code_err(ast, type_to_text(t), " values cannot be used for conditionals");
}
return EMPTY_TEXT;
}
@@ -102,7 +102,7 @@ Text_t compile_if_expression(env_t *env, ast_t *ast) {
"This `if var := ...:` declaration should be an "
"optional "
"type, not ",
- type_to_str(condition_type));
+ type_to_text(condition_type));
if (is_incomplete_type(condition_type)) code_err(condition, "This type is incomplete!");