From 0fc959dcc5b91810035e3df033e471c2e331530e Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Thu, 26 Mar 2026 07:42:45 +0800 Subject: [PATCH] re-anble unreachable --- src/lightpanda.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lightpanda.zig b/src/lightpanda.zig index d4da56bf..67e8f1b9 100644 --- a/src/lightpanda.zig +++ b/src/lightpanda.zig @@ -192,9 +192,9 @@ fn dumpWPT(page: *Page, writer: *std.Io.Writer) !void { pub inline fn assert(ok: bool, comptime ctx: []const u8, args: anytype) void { if (!ok) { - // if (comptime IS_DEBUG) { - // unreachable; - // } + if (comptime IS_DEBUG) { + unreachable; + } assertionFailure(ctx, args); } }