diff options
| author | 2024-02-13 20:30:29 -0400 | |
|---|---|---|
| committer | 2024-02-13 20:30:29 -0400 | |
| commit | 3d06cc6566d66f5ff3188da167424699404ef3ad (patch) | |
| tree | a4e91213e7e769b809ae37833aaa501f2e4682b2 /src/Grapheme.zig | |
| parent | Block init fix (diff) | |
| download | zg-3d06cc6566d66f5ff3188da167424699404ef3ad.tar.gz zg-3d06cc6566d66f5ff3188da167424699404ef3ad.tar.xz zg-3d06cc6566d66f5ff3188da167424699404ef3ad.zip | |
Removed unreachables from CodePointIterator
Diffstat (limited to 'src/Grapheme.zig')
| -rw-r--r-- | src/Grapheme.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Grapheme.zig b/src/Grapheme.zig index 1165a0e..d739159 100644 --- a/src/Grapheme.zig +++ b/src/Grapheme.zig | |||
| @@ -4,7 +4,7 @@ const std = @import("std"); | |||
| 4 | const unicode = std.unicode; | 4 | const unicode = std.unicode; |
| 5 | 5 | ||
| 6 | const ziglyph = @import("ziglyph"); | 6 | const ziglyph = @import("ziglyph"); |
| 7 | const CodePoint = ziglyph.CodePoint; | 7 | const CodePoint = @import("CodePoint.zig"); |
| 8 | const CodePointIterator = CodePoint.CodePointIterator; | 8 | const CodePointIterator = CodePoint.CodePointIterator; |
| 9 | const readCodePoint = CodePoint.readCodePoint; | 9 | const readCodePoint = CodePoint.readCodePoint; |
| 10 | // const emoji = ziglyph.emoji; | 10 | // const emoji = ziglyph.emoji; |