diff options
| author | gingerBill <bill@gingerbill.org> | 2024-01-28 22:18:51 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-01-28 22:18:51 +0000 |
| commit | 3e7e779abf305f55a5b4fe59f3b905b397c0fe87 (patch) | |
| tree | 8c92f5f4fc9e7eb7d83f03c80e592c77299f06ad /core/slice | |
| parent | 6a07effdd2cb7c369aa4c9711ff66b840abe3033 (diff) | |
Replace `core:*` to `base:*` where appropriate
Diffstat (limited to 'core/slice')
| -rw-r--r-- | core/slice/map.odin | 4 | ||||
| -rw-r--r-- | core/slice/ptr.odin | 4 | ||||
| -rw-r--r-- | core/slice/slice.odin | 6 | ||||
| -rw-r--r-- | core/slice/sort_private.odin | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/core/slice/map.odin b/core/slice/map.odin index 50d6dbd37..545ba8305 100644 --- a/core/slice/map.odin +++ b/core/slice/map.odin @@ -1,7 +1,7 @@ package slice -import "core:intrinsics" -import "core:runtime" +import "base:intrinsics" +import "base:runtime" _ :: intrinsics _ :: runtime diff --git a/core/slice/ptr.odin b/core/slice/ptr.odin index b17a27dc8..99d4157c3 100644 --- a/core/slice/ptr.odin +++ b/core/slice/ptr.odin @@ -1,7 +1,7 @@ package slice -import "core:builtin" -import "core:runtime" +import "base:builtin" +import "base:runtime" ptr_add :: proc(p: $P/^$T, x: int) -> ^T { return ([^]T)(p)[x:] diff --git a/core/slice/slice.odin b/core/slice/slice.odin index 2a9e29d01..88f8cb799 100644 --- a/core/slice/slice.odin +++ b/core/slice/slice.odin @@ -1,9 +1,9 @@ package slice -import "core:intrinsics" -import "core:builtin" +import "base:intrinsics" +import "base:builtin" import "core:math/bits" -import "core:runtime" +import "base:runtime" _ :: intrinsics _ :: builtin diff --git a/core/slice/sort_private.odin b/core/slice/sort_private.odin index 32eb7d417..487b51907 100644 --- a/core/slice/sort_private.odin +++ b/core/slice/sort_private.odin @@ -1,7 +1,7 @@ //+private package slice -import "core:intrinsics" +import "base:intrinsics" _ :: intrinsics ORD :: intrinsics.type_is_ordered |