File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -895,7 +895,7 @@ impl<T: ?Sized + Hash> Hash for Arc<T> {
895
895
}
896
896
}
897
897
898
- #[ stable( feature = "rust1 " , since = "1.6.0" ) ]
898
+ #[ stable( feature = "from_for_ptrs " , since = "1.6.0" ) ]
899
899
impl < T > From < T > for Arc < T > {
900
900
fn from ( t : T ) -> Self {
901
901
Arc :: new ( t)
Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ impl<T: ?Sized + Hash> Hash for Box<T> {
376
376
}
377
377
}
378
378
379
- #[ stable( feature = "rust1 " , since = "1.6.0" ) ]
379
+ #[ stable( feature = "from_for_ptrs " , since = "1.6.0" ) ]
380
380
impl < T > From < T > for Box < T > {
381
381
fn from ( t : T ) -> Self {
382
382
Box :: new ( t)
Original file line number Diff line number Diff line change @@ -699,7 +699,7 @@ impl<T> fmt::Pointer for Rc<T> {
699
699
}
700
700
}
701
701
702
- #[ stable( feature = "rust1 " , since = "1.6.0" ) ]
702
+ #[ stable( feature = "from_for_ptrs " , since = "1.6.0" ) ]
703
703
impl < T > From < T > for Rc < T > {
704
704
fn from ( t : T ) -> Self {
705
705
Rc :: new ( t)
You can’t perform that action at this time.
0 commit comments