Removed using statement from many_bits

This commit is contained in:
Zachary Levy
2026-04-02 18:26:06 -07:00
parent fa3fee52f6
commit ec54afebb2

View File

@@ -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 {