diff options
-rw-r--r-- | src/comptime_string_map.zig | 2 |
1 files changed, 1 insertions, 1 deletions
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; |