Skip to content

Commit 28c7fa8

Browse files
committed
Fix CI 2
1 parent 2185396 commit 28c7fa8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

lib/la-arena/src/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ where
253253
/// Ensures a value is in the entry by inserting the default value if empty, and returns a mutable reference
254254
/// to the value in the entry.
255255
pub fn or_default(self) -> &'a mut V {
256-
self.or_default()
256+
self.or_insert_with(Default::default)
257257
}
258258
}
259259

0 commit comments

Comments
 (0)