From 17c1f403c14ca78949efd9cd20f5379ff407fb4c Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 10 Mar 2022 05:40:51 -0800 Subject: Update comptime_string_map.zig --- src/comptime_string_map.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/comptime_string_map.zig b/src/comptime_string_map.zig index f6ce6db8c..bae2fce8a 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; -- cgit v1.2.3