diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index 57c3d9bd2fb2..84896eb6fd79 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -267,7 +267,7 @@ impl PartialEq for Cell { #[stable(feature = "cell_eq", since = "1.2.0")] impl Eq for Cell {} -#[unstable(feature = "cell_ord", issue = "33305")] +#[stable(feature = "cell_ord", since = "1.10.0")] impl PartialOrd for Cell { #[inline] fn partial_cmp(&self, other: &Cell) -> Option { @@ -295,7 +295,7 @@ impl PartialOrd for Cell { } } -#[unstable(feature = "cell_ord", issue = "33305")] +#[stable(feature = "cell_ord", since = "1.10.0")] impl Ord for Cell { #[inline] fn cmp(&self, other: &Cell) -> Ordering { @@ -526,7 +526,7 @@ impl PartialEq for RefCell { #[stable(feature = "cell_eq", since = "1.2.0")] impl Eq for RefCell {} -#[unstable(feature = "cell_ord", issue = "33305")] +#[stable(feature = "cell_ord", since = "1.10.0")] impl PartialOrd for RefCell { #[inline] fn partial_cmp(&self, other: &RefCell) -> Option { @@ -554,7 +554,7 @@ impl PartialOrd for RefCell { } } -#[unstable(feature = "cell_ord", issue = "33305")] +#[stable(feature = "cell_ord", since = "1.10.0")] impl Ord for RefCell { #[inline] fn cmp(&self, other: &RefCell) -> Ordering {