From bcabcb1b8704db54cfa1aebd0ad0e49d1c8772e0 Mon Sep 17 00:00:00 2001 From: Judah Caruso Date: Sun, 11 May 2025 02:36:52 -0600 Subject: [PATCH] is_constant should be #if --- macros.jai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros.jai b/macros.jai index 04520aa..df8f211 100644 --- a/macros.jai +++ b/macros.jai @@ -42,7 +42,7 @@ with :: (old: $T, $new: Code, location := #caller_location) -> T } receiver := "old"; - if is_constant(old) { + #if is_constant(old) { receiver = "copy"; basic.print_to_builder(*b, "% := old;\n", receiver); }