From 4ce891a8ce5336da39180964792110e131756cdd Mon Sep 17 00:00:00 2001 From: Jose Colon Rodriguez Date: Wed, 27 Mar 2024 21:52:02 -0400 Subject: ScriptsData and made all Datas const --- src/CombiningData.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/CombiningData.zig') diff --git a/src/CombiningData.zig b/src/CombiningData.zig index 95c947d..c67638c 100644 --- a/src/CombiningData.zig +++ b/src/CombiningData.zig @@ -32,7 +32,7 @@ pub fn init(allocator: mem.Allocator) !Self { return self; } -pub fn deinit(self: *Self) void { +pub fn deinit(self: *const Self) void { self.allocator.free(self.s1); self.allocator.free(self.s2); } -- cgit v1.2.3