From 680b75544c8501bba5dad564945ac351c2bee9c0 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 15 Sep 2023 22:08:30 -0700 Subject: [PATCH] un-inline do --- src/lib.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.zig b/src/lib.zig index b5100e8743f9030d2c7375c6d27468ad8dda498e..14cd77ca84fee0aaed0a267e39bda15296ae052f 100644 --- a/src/lib.zig +++ b/src/lib.zig @@ -36,7 +36,7 @@ pub fn compileInner(alloc: std.mem.Allocator, writer: anytype, comptime value: a pub const Writer = std.ArrayList(u8).Writer; -inline fn do(alloc: std.mem.Allocator, writer: anytype, comptime value: astgen.Value, data: anytype, ctx: anytype, comptime opts: DoOptions) anyerror!void { +fn do(alloc: std.mem.Allocator, writer: anytype, comptime value: astgen.Value, data: anytype, ctx: anytype, comptime opts: DoOptions) anyerror!void { switch (comptime value) { .element => |v| { const hastext = comptime for (v.children) |x| { -- 2.54.0