diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-21 13:44:16 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-21 13:44:16 +0100 |
| commit | f0437a42422ee84d20c06b5731f963923acb858c (patch) | |
| tree | 6eeb222e78682ecc36834b3e05569b76e61774f8 /core/unicode | |
| parent | 32bdad322aaf9012adef09c7ce57284dd217c161 (diff) | |
Enforce `core:builtin` and `core:intrinsics` for imports
Diffstat (limited to 'core/unicode')
| -rw-r--r-- | core/unicode/utf8/utf8string/string.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/unicode/utf8/utf8string/string.odin b/core/unicode/utf8/utf8string/string.odin index a34e754cf..23e2eefc6 100644 --- a/core/unicode/utf8/utf8string/string.odin +++ b/core/unicode/utf8/utf8string/string.odin @@ -2,7 +2,7 @@ package utf8string import "core:unicode/utf8" import "core:runtime" -import "builtin" +import "core:builtin" String :: struct { contents: string, |