From ec54afebb2874adb06eb2a9e3b52cdde8c063de7 Mon Sep 17 00:00:00 2001 From: Zachary Levy Date: Thu, 2 Apr 2026 18:26:06 -0700 Subject: [PATCH] Removed using statement from many_bits --- many_bits/many_bits.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/many_bits/many_bits.odin b/many_bits/many_bits.odin index 0ad1e0d..659cb03 100644 --- a/many_bits/many_bits.odin +++ b/many_bits/many_bits.odin @@ -25,8 +25,8 @@ Bits :: struct { length: int, // Total number of bits being stored } -delete :: proc(using bits: Bits, allocator := context.allocator) { - delete_slice(int_array, allocator) +delete :: proc(bits: Bits, allocator := context.allocator) { + delete_slice(bits.int_array, allocator) } make :: proc(#any_int length: int, allocator := context.allocator) -> Bits {