summaryrefslogtreecommitdiff
path: root/src/GenCatData.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/GenCatData.zig')
-rw-r--r--src/GenCatData.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GenCatData.zig b/src/GenCatData.zig
index 454c45a..5ce9fb6 100644
--- a/src/GenCatData.zig
+++ b/src/GenCatData.zig
@@ -80,7 +80,7 @@ pub fn deinit(self: *const Self) void {
80} 80}
81 81
82/// Lookup the General Category for `cp`. 82/// Lookup the General Category for `cp`.
83pub inline fn gc(self: Self, cp: u21) Gc { 83pub fn gc(self: Self, cp: u21) Gc {
84 return @enumFromInt(self.s3[self.s2[self.s1[cp >> 8] + (cp & 0xff)]]); 84 return @enumFromInt(self.s3[self.s2[self.s1[cp >> 8] + (cp & 0xff)]]);
85} 85}
86 86