From 293beec93d44150d1fb0fd60711b0d61b82791ca Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Thu, 14 May 2026 18:36:33 -0700 Subject: [PATCH] fmt: remove eval branch quota --- fmt.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt.zig b/fmt.zig index ae3b1eda217aa49a60efdf84c77e6e97af7a2e8e..1d68fc5e6b22cdd8f6975bd544747c7d3464decc 100644 --- a/fmt.zig +++ b/fmt.zig @@ -67,7 +67,7 @@ pub fn format(writer: anytype, comptime fmt: []const u8, args: anytype) !void { @compileError("32 arguments max are supported per format call"); } - @setEvalBranchQuota(2000000); + @setEvalBranchQuota(std.math.maxInt(u32)); comptime var arg_state: ArgState = .{ .args_len = fields_info.len }; comptime var i = 0; comptime var literal: []const u8 = ""; -- 2.54.0