diff options
| author | 2024-03-27 21:52:02 -0400 | |
|---|---|---|
| committer | 2024-03-27 21:52:02 -0400 | |
| commit | 4ce891a8ce5336da39180964792110e131756cdd (patch) | |
| tree | b4ff0180157bb49e15d2c36f2cf0cdaab1a24535 /src/CanonData.zig | |
| parent | Friendly general category methods (diff) | |
| download | zg-4ce891a8ce5336da39180964792110e131756cdd.tar.gz zg-4ce891a8ce5336da39180964792110e131756cdd.tar.xz zg-4ce891a8ce5336da39180964792110e131756cdd.zip | |
ScriptsData and made all Datas const
Diffstat (limited to 'src/CanonData.zig')
| -rw-r--r-- | src/CanonData.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CanonData.zig b/src/CanonData.zig index 36895ff..9f1deb8 100644 --- a/src/CanonData.zig +++ b/src/CanonData.zig | |||
| @@ -42,7 +42,7 @@ pub fn init(allocator: mem.Allocator) !Self { | |||
| 42 | return self; | 42 | return self; |
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | pub fn deinit(self: *Self) void { | 45 | pub fn deinit(self: *const Self) void { |
| 46 | self.nfc.deinit(); | 46 | self.nfc.deinit(); |
| 47 | for (self.nfd) |slice| self.allocator.free(slice); | 47 | for (self.nfd) |slice| self.allocator.free(slice); |
| 48 | self.allocator.free(self.nfd); | 48 | self.allocator.free(self.nfd); |