File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 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> {
461461 }
462462
463463 #[ inline]
464- #[ unstable( feature = "ptr_eq" ,
465- reason = "newly added" ,
466- issue = "36497" ) ]
464+ #[ stable( feature = "ptr_eq" , since = "1.17.0" ) ]
467465 /// Returns true if the two `Arc`s point to the same value (not
468466 /// just values that compare as equal).
469467 ///
470468 /// # Examples
471469 ///
472470 /// ```
473- /// #![feature(ptr_eq)]
474- ///
475471 /// use std::sync::Arc;
476472 ///
477473 /// let five = Arc::new(5);
Original file line number Diff line number Diff line change @@ -551,17 +551,13 @@ impl<T: ?Sized> Rc<T> {
551551 }
552552
553553 #[ inline]
554- #[ unstable( feature = "ptr_eq" ,
555- reason = "newly added" ,
556- issue = "36497" ) ]
554+ #[ stable( feature = "ptr_eq" , since = "1.17.0" ) ]
557555 /// Returns true if the two `Rc`s point to the same value (not
558556 /// just values that compare as equal).
559557 ///
560558 /// # Examples
561559 ///
562560 /// ```
563- /// #![feature(ptr_eq)]
564- ///
565561 /// use std::rc::Rc;
566562 ///
567563 /// let five = Rc::new(5);
You can’t perform that action at this time.
0 commit comments