diff options
| author | 2024-06-26 13:56:44 -0400 | |
|---|---|---|
| committer | 2024-06-26 13:56:44 -0400 | |
| commit | 339eaebfe4242db4f30e41c13c5cd35cc80750b0 (patch) | |
| tree | a9e55d10b6f504830de6a4882c131945f2d9ad07 /src/GenCatData.zig | |
| parent | Added changes when casefolded back (diff) | |
| download | zg-339eaebfe4242db4f30e41c13c5cd35cc80750b0.tar.gz zg-339eaebfe4242db4f30e41c13c5cd35cc80750b0.tar.xz zg-339eaebfe4242db4f30e41c13c5cd35cc80750b0.zip | |
Removed all inlines
Diffstat (limited to 'src/GenCatData.zig')
| -rw-r--r-- | src/GenCatData.zig | 2 |
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`. |
| 83 | pub inline fn gc(self: Self, cp: u21) Gc { | 83 | pub 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 | ||