Skip to content

Commit 5753981

Browse files
committed
explicit_auto_deref
1 parent 84494d1 commit 5753981

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ borrowed_box = "allow"
171171
borrow_deref_ref = "allow"
172172
derivable_impls = "allow"
173173
derived_hash_with_manual_eq = "allow"
174-
explicit_auto_deref = "allow"
175174
field_reassign_with_default = "allow"
176175
forget_non_drop = "allow"
177176
format_collect = "allow"

crates/project-model/src/manifest_path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl ManifestPath {
3636
}
3737

3838
pub fn canonicalize(&self) -> ! {
39-
(&**self).canonicalize()
39+
(**self).canonicalize()
4040
}
4141
}
4242

0 commit comments

Comments
 (0)