@@ -267,7 +267,7 @@ impl<T:PartialEq + Copy> PartialEq for Cell<T> {
267267#[ stable( feature = "cell_eq" , since = "1.2.0" ) ]
268268impl < T : Eq + Copy > Eq for Cell < T > { }
269269
270- #[ unstable ( feature = "cell_ord" , issue = "33305 " ) ]
270+ #[ stable ( feature = "cell_ord" , since = "1.10.0 " ) ]
271271impl < 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 " ) ]
299299impl < 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" ) ]
527527impl < T : ?Sized + Eq > Eq for RefCell < T > { }
528528
529- #[ unstable ( feature = "cell_ord" , issue = "33305 " ) ]
529+ #[ stable ( feature = "cell_ord" , since = "1.10.0 " ) ]
530530impl < 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 " ) ]
558558impl < T : ?Sized + Ord > Ord for RefCell < T > {
559559 #[ inline]
560560 fn cmp ( & self , other : & RefCell < T > ) -> Ordering {
0 commit comments