mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 07:08:48 +00:00
bit_array: Fix initial size.
This commit is contained in:
@@ -88,7 +88,7 @@ create :: proc(max_index: int, min_index := 0, allocator := context.allocator) -
|
|||||||
res = Bit_Array{
|
res = Bit_Array{
|
||||||
bias = min_index,
|
bias = min_index,
|
||||||
}
|
}
|
||||||
return res, resize_if_needed(&res, size_in_bits)
|
return res, resize_if_needed(&res, legs)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user