diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2025-09-15 14:56:46 +0200 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2025-09-15 14:56:46 +0200 |
| commit | 7adc33d5a4c4ba9a84ce7ff3f99b3db65db1eab1 (patch) | |
| tree | 0bc8423d05d7b4e789e43d9eb97a46f0ee9433bf | |
| parent | 2c3d5fe456294e2d9e9b56883b4ba44586d0baa9 (diff) | |
Add `@require` to core:mem import in 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. |