diff options
| author | Mark Mansi <markm@cs.wisc.edu> | 2018-03-17 11:46:31 -0500 |
|---|---|---|
| committer | Mark Mansi <markm@cs.wisc.edu> | 2018-03-26 08:37:56 -0500 |
| commit | 07104692d5df1401fe0109fca800e4efe4e81a6c (patch) | |
| tree | e7856e54c9046533f10a6d78cd06b53a1a2adebc /src/libstd/primitive_docs.rs | |
| parent | ea89b507b37e089e87af5646042b911c84656b4a (diff) | |
| download | rust-07104692d5df1401fe0109fca800e4efe4e81a6c.tar.gz rust-07104692d5df1401fe0109fca800e4efe4e81a6c.zip | |
Fix missed i128 feature gates
Diffstat (limited to 'src/libstd/primitive_docs.rs')
| -rw-r--r-- | src/libstd/primitive_docs.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs index e6e6be2e453..ce4bbfffc2e 100644 --- a/src/libstd/primitive_docs.rs +++ b/src/libstd/primitive_docs.rs @@ -751,7 +751,7 @@ mod prim_i64 { } /// The 128-bit signed integer type. /// /// *[See also the `std::i128` module](i128/index.html).* -#[unstable(feature = "i128", issue="35118")] +#[stable(feature = "i128", since="1.26.0")] mod prim_i128 { } #[doc(primitive = "u8")] @@ -791,7 +791,7 @@ mod prim_u64 { } /// The 128-bit unsigned integer type. /// /// *[See also the `std::u128` module](u128/index.html).* -#[unstable(feature = "i128", issue="35118")] +#[stable(feature = "i128", since="1.26.0")] mod prim_u128 { } #[doc(primitive = "isize")] |
