Skip to content

Commit 10510ae

Browse files
aturonalexcrichton
authored andcommitted
Stabilize ptr_eq feature, closes #36497
1 parent 9511fe6 commit 10510ae

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/liballoc/arc.rs

+1-5
Original file line numberDiff line numberDiff 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);

src/liballoc/rc.rs

+1-5
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)