mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
Fix CI 2
This commit is contained in:
parent
2185396481
commit
28c7fa8dc6
2 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ impl ManifestPath {
|
|||
}
|
||||
|
||||
pub fn canonicalize(&self) -> ! {
|
||||
self.canonicalize()
|
||||
(&**self).canonicalize()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -253,7 +253,7 @@ where
|
|||
/// Ensures a value is in the entry by inserting the default value if empty, and returns a mutable reference
|
||||
/// to the value in the entry.
|
||||
pub fn or_default(self) -> &'a mut V {
|
||||
self.or_default()
|
||||
self.or_insert_with(Default::default)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue