File tree 2 files changed +2
-10
lines changed
2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -461,17 +461,13 @@ impl<T: ?Sized> Arc<T> {
461
461
}
462
462
463
463
#[ inline]
464
- #[ unstable( feature = "ptr_eq" ,
465
- reason = "newly added" ,
466
- issue = "36497" ) ]
464
+ #[ stable( feature = "ptr_eq" , since = "1.17.0" ) ]
467
465
/// Returns true if the two `Arc`s point to the same value (not
468
466
/// just values that compare as equal).
469
467
///
470
468
/// # Examples
471
469
///
472
470
/// ```
473
- /// #![feature(ptr_eq)]
474
- ///
475
471
/// use std::sync::Arc;
476
472
///
477
473
/// let five = Arc::new(5);
Original file line number Diff line number Diff line change @@ -551,17 +551,13 @@ impl<T: ?Sized> Rc<T> {
551
551
}
552
552
553
553
#[ inline]
554
- #[ unstable( feature = "ptr_eq" ,
555
- reason = "newly added" ,
556
- issue = "36497" ) ]
554
+ #[ stable( feature = "ptr_eq" , since = "1.17.0" ) ]
557
555
/// Returns true if the two `Rc`s point to the same value (not
558
556
/// just values that compare as equal).
559
557
///
560
558
/// # Examples
561
559
///
562
560
/// ```
563
- /// #![feature(ptr_eq)]
564
- ///
565
561
/// use std::rc::Rc;
566
562
///
567
563
/// let five = Rc::new(5);
You can’t perform that action at this time.
0 commit comments