diff options
| author | 2024-02-15 12:25:33 -0400 | |
|---|---|---|
| committer | 2024-02-15 12:25:33 -0400 | |
| commit | 2436eeb57143108decfd37fe531cf87ca8d56cf8 (patch) | |
| tree | 76eb67fd0ab4c1af3e7d2ab20949f5f9be2901ff /src/Grapheme.zig | |
| parent | Removed inline from fns (diff) | |
| download | zg-2436eeb57143108decfd37fe531cf87ca8d56cf8.tar.gz zg-2436eeb57143108decfd37fe531cf87ca8d56cf8.tar.xz zg-2436eeb57143108decfd37fe531cf87ca8d56cf8.zip | |
build.zig module reorg
Diffstat (limited to 'src/Grapheme.zig')
| -rw-r--r-- | src/Grapheme.zig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Grapheme.zig b/src/Grapheme.zig index 41f3e16..888fcd4 100644 --- a/src/Grapheme.zig +++ b/src/Grapheme.zig | |||
| @@ -3,8 +3,7 @@ | |||
| 3 | const std = @import("std"); | 3 | const std = @import("std"); |
| 4 | const unicode = std.unicode; | 4 | const unicode = std.unicode; |
| 5 | 5 | ||
| 6 | const ziglyph = @import("ziglyph"); | 6 | const CodePoint = @import("CodePoint"); |
| 7 | const CodePoint = @import("CodePoint.zig"); | ||
| 8 | const CodePointIterator = CodePoint.CodePointIterator; | 7 | const CodePointIterator = CodePoint.CodePointIterator; |
| 9 | const gbp = @import("gbp"); | 8 | const gbp = @import("gbp"); |
| 10 | 9 | ||