perf: replace std.debug.assert with inlined version

See doc comment in `quirks.zig` for reasoning
This commit is contained in:
Qwerasd
2025-11-17 12:13:56 -07:00
parent 995a7377c1
commit 6d5b4a3426
162 changed files with 177 additions and 161 deletions

View File

@@ -19,7 +19,7 @@
const SharedGrid = @This();
const std = @import("std");
const assert = std.debug.assert;
const assert = @import("../quirks.zig").inlineAssert;
const Allocator = std.mem.Allocator;
const renderer = @import("../renderer.zig");
const font = @import("main.zig");