Skip to content

Commit 4dcb637

Browse files
committed
change unstable to stable on traits and set version properly
1 parent 666dd57 commit 4dcb637

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libcore/cell.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ impl<T:PartialEq + Copy> PartialEq for Cell<T> {
267267
#[stable(feature = "cell_eq", since = "1.2.0")]
268268
impl<T:Eq + Copy> Eq for Cell<T> {}
269269

270-
#[unstable(feature = "cell_ord", issue = "33305")]
270+
#[stable(feature = "cell_ord", since = "1.10.0")]
271271
impl<T:PartialOrd + Copy> PartialOrd for Cell<T> {
272272
#[inline]
273273
fn partial_cmp(&self, other: &Cell<T>) -> Option<Ordering> {
@@ -295,7 +295,7 @@ impl<T:PartialOrd + Copy> PartialOrd for Cell<T> {
295295
}
296296
}
297297

298-
#[unstable(feature = "cell_ord", issue = "33305")]
298+
#[stable(feature = "cell_ord", since = "1.10.0")]
299299
impl<T:Ord + Copy> Ord for Cell<T> {
300300
#[inline]
301301
fn cmp(&self, other: &Cell<T>) -> Ordering {
@@ -526,7 +526,7 @@ impl<T: ?Sized + PartialEq> PartialEq for RefCell<T> {
526526
#[stable(feature = "cell_eq", since = "1.2.0")]
527527
impl<T: ?Sized + Eq> Eq for RefCell<T> {}
528528

529-
#[unstable(feature = "cell_ord", issue = "33305")]
529+
#[stable(feature = "cell_ord", since = "1.10.0")]
530530
impl<T: ?Sized + PartialOrd> PartialOrd for RefCell<T> {
531531
#[inline]
532532
fn partial_cmp(&self, other: &RefCell<T>) -> Option<Ordering> {
@@ -554,7 +554,7 @@ impl<T: ?Sized + PartialOrd> PartialOrd for RefCell<T> {
554554
}
555555
}
556556

557-
#[unstable(feature = "cell_ord", issue = "33305")]
557+
#[stable(feature = "cell_ord", since = "1.10.0")]
558558
impl<T: ?Sized + Ord> Ord for RefCell<T> {
559559
#[inline]
560560
fn cmp(&self, other: &RefCell<T>) -> Ordering {

0 commit comments

Comments
 (0)