Skip to content

Commit a61b7b7

Browse files
committed
[Clippy] Swap redundant_clone to use diagnostic items instead of paths
1 parent 3310a0b commit a61b7b7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

std/src/ffi/os_str.rs

+1
Original file line numberDiff line numberDiff line change
@@ -919,6 +919,7 @@ impl OsStr {
919919
#[must_use = "this returns the result of the operation, \
920920
without modifying the original"]
921921
#[inline]
922+
#[cfg_attr(not(test), rustc_diagnostic_item = "os_str_to_os_string")]
922923
pub fn to_os_string(&self) -> OsString {
923924
OsString { inner: self.inner.to_owned() }
924925
}

std/src/path.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2265,6 +2265,7 @@ impl Path {
22652265
#[must_use = "this returns the result of the operation, \
22662266
without modifying the original"]
22672267
#[stable(feature = "rust1", since = "1.0.0")]
2268+
#[cfg_attr(not(test), rustc_diagnostic_item = "path_to_pathbuf")]
22682269
pub fn to_path_buf(&self) -> PathBuf {
22692270
PathBuf::from(self.inner.to_os_string())
22702271
}

0 commit comments

Comments
 (0)