summaryrefslogtreecommitdiff
path: root/src/unicode
diff options
context:
space:
mode:
authorMitchell Hashimoto <m@mitchellh.com>2025-03-12 09:55:46 -0700
committerMitchell Hashimoto <m@mitchellh.com>2025-03-12 09:55:52 -0700
commit0f4d2bb2375c707182dba8cf2dd7723a2e918e79 (patch)
tree25c71a20325a32cdf61d831103ef3e1837a19bdb /src/unicode
parent86d3f18707d2ca9318d66deb5867c0e0c917eb60 (diff)
Lots of 0.14 changes
Diffstat (limited to 'src/unicode')
-rw-r--r--src/unicode/grapheme.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unicode/grapheme.zig b/src/unicode/grapheme.zig
index 25061b5ef..7847ef6f5 100644
--- a/src/unicode/grapheme.zig
+++ b/src/unicode/grapheme.zig
@@ -52,7 +52,7 @@ const Precompute = struct {
var result: [std.math.maxInt(u10)]Value = undefined;
@setEvalBranchQuota(3_000);
- const info = @typeInfo(GraphemeBoundaryClass).Enum;
+ const info = @typeInfo(GraphemeBoundaryClass).@"enum";
for (0..std.math.maxInt(u2) + 1) |state_init| {
for (info.fields) |field1| {
for (info.fields) |field2| {