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

@@ -1,7 +1,7 @@
const fastmem = @import("../fastmem.zig");
const std = @import("std");
const assert = std.debug.assert;
const assert = @import("../quirks.zig").inlineAssert;
/// An associative data structure used for efficiently storing and
/// retrieving values which are able to be recomputed if necessary.