Skip to content

Commit 72ce701

Browse files
committed
Fix version number
1 parent 3848428 commit 72ce701

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/libcore/cmp.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -880,24 +880,24 @@ mod impls {
880880

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

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

890-
#[stable(feature = "never_type", since = "1.24.0")]
890+
#[stable(feature = "never_type", since = "1.25.0")]
891891
impl Eq for ! {}
892892

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

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

src/libcore/fmt/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1570,14 +1570,14 @@ macro_rules! fmt_refs {
15701570

15711571
fmt_refs! { Debug, Display, Octal, Binary, LowerHex, UpperHex, LowerExp, UpperExp }
15721572

1573-
#[stable(feature = "never_type", since = "1.24.0")]
1573+
#[stable(feature = "never_type", since = "1.25.0")]
15741574
impl Debug for ! {
15751575
fn fmt(&self, _: &mut Formatter) -> Result {
15761576
*self
15771577
}
15781578
}
15791579

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

src/libstd/error.rs

+1-1
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)