summaryrefslogtreecommitdiff
path: root/src/FoldData.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/FoldData.zig')
-rw-r--r--src/FoldData.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FoldData.zig b/src/FoldData.zig
index 2a9a1f5..e387447 100644
--- a/src/FoldData.zig
+++ b/src/FoldData.zig
@@ -41,7 +41,7 @@ pub fn init(allocator: mem.Allocator) !Self {
41 return self; 41 return self;
42} 42}
43 43
44pub fn deinit(self: *Self) void { 44pub fn deinit(self: *const Self) void {
45 for (self.fold) |slice| self.allocator.free(slice); 45 for (self.fold) |slice| self.allocator.free(slice);
46 self.allocator.free(self.fold); 46 self.allocator.free(self.fold);
47 self.allocator.free(self.cwcf); 47 self.allocator.free(self.cwcf);