From 9c65098a915c3ace13e66097dd59fbb3ae84ff34 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Tue, 4 Mar 2025 16:39:20 +0100 Subject: [PATCH] Fix missing "$switch" update. --- lib/std/atomic.c3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/atomic.c3 b/lib/std/atomic.c3 index bbf9534aa..2f84f81e3 100644 --- a/lib/std/atomic.c3 +++ b/lib/std/atomic.c3 @@ -167,7 +167,7 @@ macro bool is_native_atomic_type($Type) $if $Type.sizeof > void*.sizeof: return false; $else - $switch ($Type.kindof) + $switch $Type.kindof: $case SIGNED_INT: $case UNSIGNED_INT: $case POINTER: