diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-27 17:45:13 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-27 17:45:13 +0200 |
| commit | 3b0e9424a66058da82d11d432da886ec7b6ce7eb (patch) | |
| tree | 0ad906e3b7d945405cdfeb9ff95b02546e1ed4bb /src/code.zig | |
| parent | ef5c0341ca15f6862294802103b02992b29609e8 (diff) | |
perf(eval): reduce memory syscall
Diffstat (limited to 'src/code.zig')
| -rw-r--r-- | src/code.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/code.zig b/src/code.zig index 7b7d23a..5c5c0f2 100644 --- a/src/code.zig +++ b/src/code.zig @@ -25,7 +25,6 @@ pub fn parse(alloc: Allocator, l: *Lexer) Error!Element { const code = try Element.Code.init(alloc); code.attribute = data; const el = try Element.Figure.init(alloc, code.element()); - errdefer el.deinit(alloc); while (l.next()) |it| { if (it.kind == .code_block) return Error.InvalidCodeBlock; if (it.kind.isDelimiter()) { |
