diff --git a/src/comptime_string_map.zig b/src/comptime_string_map.zig index f6ce6db8c4..bae2fce8af 100644 --- a/src/comptime_string_map.zig +++ b/src/comptime_string_map.zig @@ -26,7 +26,7 @@ pub fn ComptimeStringMapWithKeyType(comptime KeyType: type, comptime V: type, co return a.key.len < b.key.len; } // https://stackoverflow.com/questions/11227809/why-is-processing-a-sorted-array-faster-than-processing-an-unsorted-array - @setEvalBranchQuota(4000); + @setEvalBranchQuota(99999); return std.mem.order(KeyType, a.key, b.key) == .lt; } }).lenAsc;