From 3f04f8d0a653cf5decef2225c2044742b382718a Mon Sep 17 00:00:00 2001 From: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Date: Thu, 23 Feb 2023 23:57:19 -0800 Subject: Upgrade Zig (#2151) * fixup * Upgrade Zig * Remove bad assertion * strings * bump * mode -> optimize * optimize * Linux build * Update bindgen.zig --- src/sourcemap/sourcemap.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sourcemap/sourcemap.zig') diff --git a/src/sourcemap/sourcemap.zig b/src/sourcemap/sourcemap.zig index 54d58fbe7..3fa063e74 100644 --- a/src/sourcemap/sourcemap.zig +++ b/src/sourcemap/sourcemap.zig @@ -531,7 +531,7 @@ const base64_lut: [std.math.maxInt(u7)]u7 = brk: { @setEvalBranchQuota(9999); var bytes = [_]u7{std.math.maxInt(u7)} ** std.math.maxInt(u7); - for (base64) |c, i| { + for (base64, 0..) |c, i| { bytes[c] = i; } -- cgit v1.2.3