mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 05:53:45 +00:00
explicit_auto_deref
This commit is contained in:
parent
84494d1c8e
commit
575398134e
2 changed files with 1 additions and 2 deletions
|
@ -171,7 +171,6 @@ borrowed_box = "allow"
|
||||||
borrow_deref_ref = "allow"
|
borrow_deref_ref = "allow"
|
||||||
derivable_impls = "allow"
|
derivable_impls = "allow"
|
||||||
derived_hash_with_manual_eq = "allow"
|
derived_hash_with_manual_eq = "allow"
|
||||||
explicit_auto_deref = "allow"
|
|
||||||
field_reassign_with_default = "allow"
|
field_reassign_with_default = "allow"
|
||||||
forget_non_drop = "allow"
|
forget_non_drop = "allow"
|
||||||
format_collect = "allow"
|
format_collect = "allow"
|
||||||
|
|
|
@ -36,7 +36,7 @@ impl ManifestPath {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn canonicalize(&self) -> ! {
|
pub fn canonicalize(&self) -> ! {
|
||||||
(&**self).canonicalize()
|
(**self).canonicalize()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue