Skip to content

Commit 0027e98

Browse files
committed
Fix a few more
1 parent 1197f9a commit 0027e98

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/libcore/num/u128.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
//!
1313
//! *[See also the `u128` primitive type](../../std/primitive.u128.html).*
1414
15-
#![unstable(feature = "i128", issue="35118")]
16-
uint_module! { u128, #[unstable(feature = "i128", issue="35118")] }
15+
#![stable(feature = "i128", since = "1.26.0")]
16+
uint_module! { u128, #[stable(feature = "i128", since="1.26.0")] }

src/libstd/net/ip.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ impl FromInner<c::in6_addr> for Ipv6Addr {
13461346
}
13471347
}
13481348

1349-
#[unstable(feature = "i128", issue = "35118")]
1349+
#[stable(feature = "i128", since = "1.26.0")]
13501350
impl From<Ipv6Addr> for u128 {
13511351
fn from(ip: Ipv6Addr) -> u128 {
13521352
let ip = ip.segments();
@@ -1355,7 +1355,7 @@ impl From<Ipv6Addr> for u128 {
13551355
((ip[6] as u128) << 16) + (ip[7] as u128)
13561356
}
13571357
}
1358-
#[unstable(feature = "i128", issue = "35118")]
1358+
#[stable(feature = "i128", since = "1.26.0")]
13591359
impl From<u128> for Ipv6Addr {
13601360
fn from(ip: u128) -> Ipv6Addr {
13611361
Ipv6Addr::new(

0 commit comments

Comments
 (0)