mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 23:24:29 +00:00
unnecessary_mut_passed
This commit is contained in:
parent
f191b80799
commit
e7d0deac53
2 changed files with 1 additions and 2 deletions
|
@ -181,7 +181,6 @@ non_canonical_partial_ord_impl = "allow"
|
|||
self_named_constructors = "allow"
|
||||
too_many_arguments = "allow"
|
||||
type_complexity = "allow"
|
||||
unnecessary_mut_passed = "allow"
|
||||
useless_conversion = "allow"
|
||||
useless_format = "allow"
|
||||
wildcard_in_or_patterns = "allow"
|
||||
|
|
|
@ -114,7 +114,7 @@ impl MirLowerCtx<'_> {
|
|||
index: i as u32,
|
||||
}))
|
||||
}),
|
||||
&mut cond_place,
|
||||
&cond_place,
|
||||
mode,
|
||||
)?
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue