summaryrefslogtreecommitdiff
path: root/src/GenCatData.zig
diff options
context:
space:
mode:
authorGravatar Jose Colon Rodriguez2024-06-26 13:56:44 -0400
committerGravatar Jose Colon Rodriguez2024-06-26 13:56:44 -0400
commit339eaebfe4242db4f30e41c13c5cd35cc80750b0 (patch)
treea9e55d10b6f504830de6a4882c131945f2d9ad07 /src/GenCatData.zig
parentAdded changes when casefolded back (diff)
downloadzg-339eaebfe4242db4f30e41c13c5cd35cc80750b0.tar.gz
zg-339eaebfe4242db4f30e41c13c5cd35cc80750b0.tar.xz
zg-339eaebfe4242db4f30e41c13c5cd35cc80750b0.zip
Removed all inlines
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