fix(clippy): suppress `unused` lint on windows (#12107)

master
RoloEdits 2 days ago committed by GitHub
parent 46ffec3fd4
commit cbbeca6c52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -149,7 +149,7 @@ fn path_documentation(md: &fs::Metadata, full_path: &Path, kind: &str) -> String
} }
#[cfg(not(unix))] #[cfg(not(unix))]
fn path_documentation(md: &fs::Metadata, full_path: &Path, kind: &str) -> String { fn path_documentation(_md: &fs::Metadata, full_path: &Path, kind: &str) -> String {
let full_path = fold_home_dir(canonicalize(full_path)); let full_path = fold_home_dir(canonicalize(full_path));
let full_path_name = full_path.to_string_lossy(); let full_path_name = full_path.to_string_lossy();
format!("type: `{kind}`\nfull path: `{full_path_name}`",) format!("type: `{kind}`\nfull path: `{full_path_name}`",)

Loading…
Cancel
Save