aboutsummaryrefslogtreecommitdiff
path: root/src/deps/zig-clap/clap/comptime.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/deps/zig-clap/clap/comptime.zig')
-rw-r--r--src/deps/zig-clap/clap/comptime.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/deps/zig-clap/clap/comptime.zig b/src/deps/zig-clap/clap/comptime.zig
index a890ee4e2..d32a60f11 100644
--- a/src/deps/zig-clap/clap/comptime.zig
+++ b/src/deps/zig-clap/clap/comptime.zig
@@ -74,9 +74,6 @@ pub fn ComptimeClap(
while (try stream.next()) |arg| {
const param = arg.param;
- // std.debug.print("arg: {s}\n", .{arg.value orelse "~null~"});
- // std.debug.print("arg: {s}\n", .{arg.param.names.long orelse arg.param.names.short orelse "~noname~"});
- // std.debug.print("state: {s}\n", .{@tagName(stream.state)});
if (param.names.long == null and param.names.short == null) {
try pos.append(arg.value.?);
if (opt.stop_after_positional_at > 0 and pos.items.len >= opt.stop_after_positional_at) {