authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-24 03:00:35 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-06-24 03:00:35 -07:00
log40ccf913022410ea16162df776db1a3fff6f9a7c
treee6d4ac6e675aa5987a2a989ffbc490cc6b0768c4
parentbec0315486ac11bd5e7878a5046517653a85f7d2
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

make sure this is called at comptime, lots of instantiations otherwise


1 files changed, 1 insertions(+), 1 deletions(-)

src/lib.zig+1-1
......@@ -64,7 +64,7 @@ fn doInner(alloc: std.mem.Allocator, writer: anytype, comptime value: astgen.Val
6464 } else false;
6565 _ = hastext;
6666
67 if (std.mem.eql(u8, v.name, "_")) {
67 if (comptime std.mem.eql(u8, v.name, "_")) {
6868 inline for (v.children) |it| {
6969 try do(alloc, writer, it, data, ctx, .{
7070 .Ctx = opts.Ctx,