diff options
| author | Mark Mansi <markm@cs.wisc.edu> | 2018-03-17 20:10:18 -0500 |
|---|---|---|
| committer | Mark Mansi <markm@cs.wisc.edu> | 2018-03-26 08:37:56 -0500 |
| commit | 463865e6957f8b698349460cb231f9d641300df0 (patch) | |
| tree | 1269fdb0cb9579e868b0b47f2a6ec2699a48c8a5 | |
| parent | a7f21f1c0a57984eb9a04b39223ae0c5b1cf63fb (diff) | |
| download | rust-463865e6957f8b698349460cb231f9d641300df0.tar.gz rust-463865e6957f8b698349460cb231f9d641300df0.zip | |
Fix a few more unstables that I missed
| -rw-r--r-- | src/libcore/hash/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/hash/mod.rs b/src/libcore/hash/mod.rs index ab714645675..3e1f21cafe4 100644 --- a/src/libcore/hash/mod.rs +++ b/src/libcore/hash/mod.rs @@ -308,7 +308,7 @@ pub trait Hasher { } /// Writes a single `u128` into this hasher. #[inline] - #[unstable(feature = "i128", issue = "35118")] + #[stable(feature = "i128", since = "1.26.0")] fn write_u128(&mut self, i: u128) { self.write(&unsafe { mem::transmute::<_, [u8; 16]>(i) }) } @@ -348,7 +348,7 @@ pub trait Hasher { } /// Writes a single `i128` into this hasher. #[inline] - #[unstable(feature = "i128", issue = "35118")] + #[stable(feature = "i128", since = "1.26.0")] fn write_i128(&mut self, i: i128) { self.write_u128(i as u128) } |
