diff options
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 61875b11095..e299cf4febf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -77,11 +77,11 @@ impl ClippyCmd { "--fix" => { cargo_subcommand = "fix"; continue; - } + }, "--" => break, // Cover -Zunstable-options and -Z unstable-options s if s.ends_with("unstable-options") => unstable_options = true, - _ => {} + _ => {}, } args.push(arg); |
