From d9e37656e83d7d3c25709795ab7ccccca0071254 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Tue, 28 Apr 2026 19:37:37 +0200 Subject: perf(eval): reduce memory usage --- src/parser.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parser.zig') diff --git a/src/parser.zig b/src/parser.zig index 72b803f..c8f1c81 100644 --- a/src/parser.zig +++ b/src/parser.zig @@ -39,7 +39,7 @@ fn gen(parent: Allocator, l: *Lexer) Error!*Document { errdefer root.deinit(); const alloc = root.allocator(); base: while (l.peek()) |it| { - try root.append(switch (it.kind) { + root.append(switch (it.kind) { // other blocks .title => try title.parse(alloc, l), .list_ordored => try list.parseOrdored(alloc, l), -- cgit v1.2.3