mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
chore: fixes build failure for 1.11.0
This commit is contained in:
parent
979e8e0d2f
commit
36e9d29b01
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ macro_rules! parse_positional {
|
|||
$pos_counter == $_self.positionals.len()) {
|
||||
$_self.trailing_vals = true;
|
||||
}
|
||||
try!($_self.add_val_to_arg($p, &$arg_os, $matcher));
|
||||
let _ = try!($_self.add_val_to_arg($p, &$arg_os, $matcher));
|
||||
|
||||
$matcher.inc_occurrence_of($p.b.name);
|
||||
let _ = $_self.groups_for_arg($p.b.name)
|
||||
|
|
Loading…
Reference in a new issue