diff options
| author | Oliver Middleton <olliemail27@gmail.com> | 2017-12-27 14:11:05 +0000 |
|---|---|---|
| committer | Oliver Middleton <olliemail27@gmail.com> | 2017-12-27 14:11:05 +0000 |
| commit | a8d107be258514261a9366a8a384e370eb0a9628 (patch) | |
| tree | 9cae5f25d66361427dce83d520c9fc3ecb659719 /src/libstd/path.rs | |
| parent | 0efdfa1d6220484770e3730062b92a9d2b2e20b9 (diff) | |
| download | rust-a8d107be258514261a9366a8a384e370eb0a9628.tar.gz rust-a8d107be258514261a9366a8a384e370eb0a9628.zip | |
Correct a few stability attributes
Diffstat (limited to 'src/libstd/path.rs')
| -rw-r--r-- | src/libstd/path.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs index eb125a4737a..bed9efcb846 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -1454,7 +1454,7 @@ impl<'a> From<PathBuf> for Cow<'a, Path> { } } -#[stable(feature = "shared_from_slice2", since = "1.23.0")] +#[stable(feature = "shared_from_slice2", since = "1.24.0")] impl From<PathBuf> for Arc<Path> { #[inline] fn from(s: PathBuf) -> Arc<Path> { @@ -1463,7 +1463,7 @@ impl From<PathBuf> for Arc<Path> { } } -#[stable(feature = "shared_from_slice2", since = "1.23.0")] +#[stable(feature = "shared_from_slice2", since = "1.24.0")] impl<'a> From<&'a Path> for Arc<Path> { #[inline] fn from(s: &Path) -> Arc<Path> { @@ -1472,7 +1472,7 @@ impl<'a> From<&'a Path> for Arc<Path> { } } -#[stable(feature = "shared_from_slice2", since = "1.23.0")] +#[stable(feature = "shared_from_slice2", since = "1.24.0")] impl From<PathBuf> for Rc<Path> { #[inline] fn from(s: PathBuf) -> Rc<Path> { @@ -1481,7 +1481,7 @@ impl From<PathBuf> for Rc<Path> { } } -#[stable(feature = "shared_from_slice2", since = "1.23.0")] +#[stable(feature = "shared_from_slice2", since = "1.24.0")] impl<'a> From<&'a Path> for Rc<Path> { #[inline] fn from(s: &Path) -> Rc<Path> { |
