diff --git a/core/container/set.odin b/core/container/set.odin index f62ea46d4..7ab67cf2e 100644 --- a/core/container/set.odin +++ b/core/container/set.odin @@ -57,7 +57,7 @@ set_add :: proc(m: ^Set, key: u64) { _set_grow(m); } - i := _set_find_or_make(m, key); + _ = _set_find_or_make(m, key); if _set_full(m^) { _set_grow(m); } diff --git a/core/container/small_array.odin b/core/container/small_array.odin index 1f023ef36..62dab52e3 100644 --- a/core/container/small_array.odin +++ b/core/container/small_array.odin @@ -1,7 +1,5 @@ package container -import "core:mem" - Small_Array :: struct(N: int, T: typeid) where N >= 0 { data: [N]T, len: int,