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/bufio | |
| parent | 6a07effdd2cb7c369aa4c9711ff66b840abe3033 (diff) | |
Replace `core:*` to `base:*` where appropriate
Diffstat (limited to 'core/bufio')
| -rw-r--r-- | core/bufio/scanner.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bufio/scanner.odin b/core/bufio/scanner.odin index b9e620250..ee2d5d1f6 100644 --- a/core/bufio/scanner.odin +++ b/core/bufio/scanner.odin @@ -4,7 +4,7 @@ import "core:bytes" import "core:io" import "core:mem" import "core:unicode/utf8" -import "core:intrinsics" +import "base:intrinsics" // Extra errors returns by scanning procedures Scanner_Extra_Error :: enum i32 { |