Fix CI 2
This commit is contained in:
parent
2185396481
commit
28c7fa8dc6
@ -36,7 +36,7 @@ pub fn parent(&self) -> &AbsPath {
|
||||
}
|
||||
|
||||
pub fn canonicalize(&self) -> ! {
|
||||
self.canonicalize()
|
||||
(&**self).canonicalize()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -253,7 +253,7 @@ impl<'a, IDX, V> Entry<'a, IDX, V>
|
||||
/// 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 New Issue
Block a user