aboutsummaryrefslogtreecommitdiff
path: root/src/deps/zig-clap/clap.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/deps/zig-clap/clap.zig')
-rw-r--r--src/deps/zig-clap/clap.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/deps/zig-clap/clap.zig b/src/deps/zig-clap/clap.zig
index e6bf56f08..907ece37f 100644
--- a/src/deps/zig-clap/clap.zig
+++ b/src/deps/zig-clap/clap.zig
@@ -63,6 +63,8 @@ pub fn Param(comptime Id: type) type {
/// Takes a string and parses it to a Param(Help).
/// This is the reverse of 'help' but for at single parameter only.
pub fn parseParam(line: []const u8) !Param(Help) {
+ @setEvalBranchQuota(9999);
+
var found_comma = false;
var it = mem.tokenize(u8, line, " \t");
var param_str = it.next() orelse return error.NoParamFound;