We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f21fae commit 8cc56caCopy full SHA for 8cc56ca
src/cargo/core/compiler/fingerprint/mod.rs
@@ -2389,7 +2389,7 @@ pub fn parse_rustc_dep_info(rustc_dep_info: &Path) -> CargoResult<RustcDepInfo>
2389
internal("malformed dep-info format, trailing \\".to_string())
2390
})?);
2391
}
2392
- ret.files.entry(file.into()).or_insert(None);
+ ret.files.entry(file.into()).or_default();
2393
2394
} else if let Some(rest) = line.strip_prefix("# checksum:") {
2395
let mut parts = rest.splitn(3, ' ');
0 commit comments