Skip to content

Commit 32ddb30

Browse files
committed
Fix version number
1 parent a9fc390 commit 32ddb30

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/libcore/cmp.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -882,24 +882,24 @@ mod impls {
882882

883883
ord_impl! { char usize u8 u16 u32 u64 u128 isize i8 i16 i32 i64 i128 }
884884

885-
#[stable(feature = "never_type", since = "1.24.0")]
885+
#[stable(feature = "never_type", since = "1.25.0")]
886886
impl PartialEq for ! {
887887
fn eq(&self, _: &!) -> bool {
888888
*self
889889
}
890890
}
891891

892-
#[stable(feature = "never_type", since = "1.24.0")]
892+
#[stable(feature = "never_type", since = "1.25.0")]
893893
impl Eq for ! {}
894894

895-
#[stable(feature = "never_type", since = "1.24.0")]
895+
#[stable(feature = "never_type", since = "1.25.0")]
896896
impl PartialOrd for ! {
897897
fn partial_cmp(&self, _: &!) -> Option<Ordering> {
898898
*self
899899
}
900900
}
901901

902-
#[stable(feature = "never_type", since = "1.24.0")]
902+
#[stable(feature = "never_type", since = "1.25.0")]
903903
impl Ord for ! {
904904
fn cmp(&self, _: &!) -> Ordering {
905905
*self

src/libcore/fmt/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1579,14 +1579,14 @@ macro_rules! fmt_refs {
15791579

15801580
fmt_refs! { Debug, Display, Octal, Binary, LowerHex, UpperHex, LowerExp, UpperExp }
15811581

1582-
#[stable(feature = "never_type", since = "1.24.0")]
1582+
#[stable(feature = "never_type", since = "1.25.0")]
15831583
impl Debug for ! {
15841584
fn fmt(&self, _: &mut Formatter) -> Result {
15851585
*self
15861586
}
15871587
}
15881588

1589-
#[stable(feature = "never_type", since = "1.24.0")]
1589+
#[stable(feature = "never_type", since = "1.25.0")]
15901590
impl Display for ! {
15911591
fn fmt(&self, _: &mut Formatter) -> Result {
15921592
*self

src/libstd/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ impl<'a> From<Cow<'a, str>> for Box<Error> {
234234
}
235235
}
236236

237-
#[stable(feature = "never_type", since = "1.24.0")]
237+
#[stable(feature = "never_type", since = "1.25.0")]
238238
impl Error for ! {
239239
fn description(&self) -> &str { *self }
240240
}

0 commit comments

Comments
 (0)