From 4dcb63707eae97032254c18204b0f64b002b9cca Mon Sep 17 00:00:00 2001 From: Geordon Worley Date: Sun, 1 May 2016 04:26:39 -0400 Subject: [PATCH] change unstable to stable on traits and set version properly --- src/libcore/cell.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 {