summaryrefslogtreecommitdiff
path: root/src/GenCatData.zig
diff options
context:
space:
mode:
authorGravatar Jose Colon Rodriguez2024-03-27 21:52:02 -0400
committerGravatar Jose Colon Rodriguez2024-03-27 21:52:02 -0400
commit4ce891a8ce5336da39180964792110e131756cdd (patch)
treeb4ff0180157bb49e15d2c36f2cf0cdaab1a24535 /src/GenCatData.zig
parentFriendly general category methods (diff)
downloadzg-4ce891a8ce5336da39180964792110e131756cdd.tar.gz
zg-4ce891a8ce5336da39180964792110e131756cdd.tar.xz
zg-4ce891a8ce5336da39180964792110e131756cdd.zip
ScriptsData and made all Datas const
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 b45135b..37ae037 100644
--- a/src/GenCatData.zig
+++ b/src/GenCatData.zig
@@ -71,7 +71,7 @@ pub fn init(allocator: mem.Allocator) !Self {
71 return self; 71 return self;
72} 72}
73 73
74pub fn deinit(self: *Self) void { 74pub fn deinit(self: *const Self) void {
75 self.allocator.free(self.s1); 75 self.allocator.free(self.s1);
76 self.allocator.free(self.s2); 76 self.allocator.free(self.s2);
77 self.allocator.free(self.s3); 77 self.allocator.free(self.s3);