@@ -267,7 +267,7 @@ impl<T:PartialEq + Copy> PartialEq for Cell<T> {
267
267
#[ stable( feature = "cell_eq" , since = "1.2.0" ) ]
268
268
impl < T : Eq + Copy > Eq for Cell < T > { }
269
269
270
- #[ unstable ( feature = "cell_ord" , issue = "33305 " ) ]
270
+ #[ stable ( feature = "cell_ord" , since = "1.10.0 " ) ]
271
271
impl < T : PartialOrd + Copy > PartialOrd for Cell < T > {
272
272
#[ inline]
273
273
fn partial_cmp ( & self , other : & Cell < T > ) -> Option < Ordering > {
@@ -295,7 +295,7 @@ impl<T:PartialOrd + Copy> PartialOrd for Cell<T> {
295
295
}
296
296
}
297
297
298
- #[ unstable ( feature = "cell_ord" , issue = "33305 " ) ]
298
+ #[ stable ( feature = "cell_ord" , since = "1.10.0 " ) ]
299
299
impl < T : Ord + Copy > Ord for Cell < T > {
300
300
#[ inline]
301
301
fn cmp ( & self , other : & Cell < T > ) -> Ordering {
@@ -526,7 +526,7 @@ impl<T: ?Sized + PartialEq> PartialEq for RefCell<T> {
526
526
#[ stable( feature = "cell_eq" , since = "1.2.0" ) ]
527
527
impl < T : ?Sized + Eq > Eq for RefCell < T > { }
528
528
529
- #[ unstable ( feature = "cell_ord" , issue = "33305 " ) ]
529
+ #[ stable ( feature = "cell_ord" , since = "1.10.0 " ) ]
530
530
impl < T : ?Sized + PartialOrd > PartialOrd for RefCell < T > {
531
531
#[ inline]
532
532
fn partial_cmp ( & self , other : & RefCell < T > ) -> Option < Ordering > {
@@ -554,7 +554,7 @@ impl<T: ?Sized + PartialOrd> PartialOrd for RefCell<T> {
554
554
}
555
555
}
556
556
557
- #[ unstable ( feature = "cell_ord" , issue = "33305 " ) ]
557
+ #[ stable ( feature = "cell_ord" , since = "1.10.0 " ) ]
558
558
impl < T : ?Sized + Ord > Ord for RefCell < T > {
559
559
#[ inline]
560
560
fn cmp ( & self , other : & RefCell < T > ) -> Ordering {
0 commit comments