diff options
| author | marcs feh <82233333+marcs-feh@users.noreply.github.com> | 2024-02-02 21:56:40 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-02 21:56:40 -0300 |
| commit | fc113315f6ccd5d58652e8d2f326ed150e74adf1 (patch) | |
| tree | 00c4df54de73cb2bf0a344e02e64b7fcb3df3768 /core/container/small_array | |
| parent | d931bfcf83894b65d6db3bc846110efb400ab4a1 (diff) | |
| parent | cec08114fdd9812819c10c66cd10f0a9d63866b2 (diff) | |
Merge branch 'odin-lang:master' into master
Diffstat (limited to 'core/container/small_array')
| -rw-r--r-- | core/container/small_array/small_array.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/container/small_array/small_array.odin b/core/container/small_array/small_array.odin index b471d1706..ecec7b80c 100644 --- a/core/container/small_array/small_array.odin +++ b/core/container/small_array/small_array.odin @@ -1,7 +1,7 @@ package container_small_array -import "core:builtin" -import "core:runtime" +import "base:builtin" +import "base:runtime" _ :: runtime Small_Array :: struct($N: int, $T: typeid) where N >= 0 { |