Skip to content

Commit

Permalink
Remove unused lifetimes.
Browse files Browse the repository at this point in the history
  • Loading branch information
clarfonthey committed May 20, 2017
1 parent 272e77f commit 6119f98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libstd/ffi/os_str.rs
Expand Up @@ -530,7 +530,7 @@ impl<'a> From<&'a OsStr> for Box<OsStr> {
}

#[stable(feature = "os_string_from_box", since = "1.18.0")]
impl<'a> From<Box<OsStr>> for OsString {
impl From<Box<OsStr>> for OsString {
fn from(boxed: Box<OsStr>) -> OsString {
boxed.into_os_string()
}
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/path.rs
Expand Up @@ -1342,7 +1342,7 @@ impl<'a> From<&'a Path> for Box<Path> {
}

#[stable(feature = "path_buf_from_box", since = "1.18.0")]
impl<'a> From<Box<Path>> for PathBuf {
impl From<Box<Path>> for PathBuf {
fn from(boxed: Box<Path>) -> PathBuf {
boxed.into_path_buf()
}
Expand Down

0 comments on commit 6119f98

Please sign in to comment.