From 71f73d8b3ce63f9a3685bc1a1686ef4fab3294a6 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 15:43:59 -0400 Subject: Deprecate sets --- src/compile/pointers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compile/pointers.c') diff --git a/src/compile/pointers.c b/src/compile/pointers.c index 31687d78..11348330 100644 --- a/src/compile/pointers.c +++ b/src/compile/pointers.c @@ -44,7 +44,7 @@ Text_t compile_to_pointer_depth(env_t *env, ast_t *ast, int64_t target_depth, bo } if (needs_incref && t->tag == ListType) val = Texts("LIST_COPY(", val, ")"); - else if (needs_incref && (t->tag == TableType || t->tag == SetType)) val = Texts("TABLE_COPY(", val, ")"); + else if (needs_incref && t->tag == TableType) val = Texts("TABLE_COPY(", val, ")"); return val; } -- cgit v1.2.3