1
Fork 0

Fix clippy warnings

Fixes clippy::{cone_on_copy, filter_next, redundant_closure, single_char_pattern, len_zero,redundant_field_names, useless_format, identity_conversion, map_clone, into_iter_on_ref, needless_return, option_as_ref_deref, unused_unit, unnecessary_mut_passed}
This commit is contained in:
Matthias Krüger 2020-05-11 13:01:37 +02:00
parent 3fe4dd2dda
commit 8bfd84539e
24 changed files with 68 additions and 79 deletions

View file

@ -447,7 +447,7 @@ impl Options {
None => return Err(3),
};
match matches.opt_str("r").as_ref().map(|s| &**s) {
match matches.opt_str("r").as_deref() {
Some("rust") | None => {}
Some(s) => {
diag.struct_err(&format!("unknown input format: {}", s)).emit();