re-anble unreachable

This commit is contained in:
Karl Seguin
2026-03-26 07:42:45 +08:00
parent ca41bb5fa2
commit 0fc959dcc5

View File

@@ -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);
}
}