From 339eaebfe4242db4f30e41c13c5cd35cc80750b0 Mon Sep 17 00:00:00 2001 From: Jose Colon Rodriguez Date: Wed, 26 Jun 2024 13:56:44 -0400 Subject: Removed all inlines --- src/CanonData.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/CanonData.zig') diff --git a/src/CanonData.zig b/src/CanonData.zig index be2b381..05b9017 100644 --- a/src/CanonData.zig +++ b/src/CanonData.zig @@ -56,11 +56,11 @@ pub fn deinit(self: *Self) void { } /// Returns canonical decomposition for `cp`. -pub inline fn toNfd(self: Self, cp: u21) []const u21 { +pub fn toNfd(self: Self, cp: u21) []const u21 { return self.nfd[cp]; } // Returns the primary composite for the codepoints in `cp`. -pub inline fn toNfc(self: Self, cps: [2]u21) ?u21 { +pub fn toNfc(self: Self, cps: [2]u21) ?u21 { return self.nfc.get(cps); } -- cgit v1.2.3