diff options
Diffstat (limited to 'core/container/small_array')
| -rw-r--r-- | core/container/small_array/small_array.odin | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/container/small_array/small_array.odin b/core/container/small_array/small_array.odin index d2f0f8130..31cc8315e 100644 --- a/core/container/small_array/small_array.odin +++ b/core/container/small_array/small_array.odin @@ -1,9 +1,8 @@ package container_small_array import "base:builtin" -import "base:runtime" -import "core:mem" -_ :: runtime +@require import "base:runtime" +@require import "core:mem" /* A fixed-size stack-allocated array operated on in a dynamic fashion. |