Skip to content

Commit bca8eeb

Browse files
committed
Fix a few more unstables that I missed
1 parent 0027e98 commit bca8eeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/hash/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ pub trait Hasher {
308308
}
309309
/// Writes a single `u128` into this hasher.
310310
#[inline]
311-
#[unstable(feature = "i128", issue = "35118")]
311+
#[stable(feature = "i128", since = "1.26.0")]
312312
fn write_u128(&mut self, i: u128) {
313313
self.write(&unsafe { mem::transmute::<_, [u8; 16]>(i) })
314314
}
@@ -348,7 +348,7 @@ pub trait Hasher {
348348
}
349349
/// Writes a single `i128` into this hasher.
350350
#[inline]
351-
#[unstable(feature = "i128", issue = "35118")]
351+
#[stable(feature = "i128", since = "1.26.0")]
352352
fn write_i128(&mut self, i: i128) {
353353
self.write_u128(i as u128)
354354
}

0 commit comments

Comments
 (0)