diff options
| author | bors <bors@rust-lang.org> | 2017-06-17 06:47:54 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-06-17 06:47:54 +0000 |
| commit | ff9f2d2ae94fd951229c33ae55076fce4f68fab0 (patch) | |
| tree | 3e8b1dc8719c4068a4ffcd079807d92ac55d6f65 /src/libstd | |
| parent | 08d920cd4d95cc3e3c6ee3dd1ad5c98a4c58639e (diff) | |
| parent | 6062bf7aca1927bc0e64854c54b466fffa73f07a (diff) | |
| download | rust-ff9f2d2ae94fd951229c33ae55076fce4f68fab0.tar.gz rust-ff9f2d2ae94fd951229c33ae55076fce4f68fab0.zip | |
Auto merge of #42712 - frewsxcv:rollup, r=frewsxcv
Rollup of 3 pull requests - Successful merges: #42660, #42662, #42705 - Failed merges:
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 2 | ||||
| -rw-r--r-- | src/libstd/rand/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index f307fbb7c00..105f4026ec8 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -484,7 +484,7 @@ pub mod rt; // but it may be stabilized long-term. As a result we're exposing a hidden, // unstable module so we can get our build working. #[doc(hidden)] -#[unstable(feature = "rand", issue = "0")] +#[unstable(feature = "rand", issue = "27703")] pub mod __rand { pub use rand::{thread_rng, ThreadRng, Rng}; } diff --git a/src/libstd/rand/mod.rs b/src/libstd/rand/mod.rs index 4f33d726398..8da070e7a49 100644 --- a/src/libstd/rand/mod.rs +++ b/src/libstd/rand/mod.rs @@ -56,7 +56,7 @@ //! between the two sources. (Also note that, on some systems e.g. FreeBSD, both `/dev/random` //! and `/dev/urandom` may block once if the CSPRNG has not seeded yet.) -#![unstable(feature = "rand", issue = "0")] +#![unstable(feature = "rand", issue = "27703")] use cell::RefCell; use fmt; |
