diff options
| author | oliver-giersch <oliver.giersch@googlemail.com> | 2018-10-16 22:42:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-16 22:42:14 +0200 |
| commit | 7849aeddb9de12cd7dadc3953cb581695717130b (patch) | |
| tree | 531702e408b0c51a0ff47c4cf01758085e77e6c6 /src/libstd/thread | |
| parent | 30bfdc872020c6addcb2ea488b2a6dbdd5ef355a (diff) | |
| download | rust-7849aeddb9de12cd7dadc3953cb581695717130b.tar.gz rust-7849aeddb9de12cd7dadc3953cb581695717130b.zip | |
adds tracking issue number
Diffstat (limited to 'src/libstd/thread')
| -rw-r--r-- | src/libstd/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs index dc2d12bf2c4..e5a28c27cf0 100644 --- a/src/libstd/thread/mod.rs +++ b/src/libstd/thread/mod.rs @@ -451,7 +451,7 @@ impl Builder { /// [`Builder::spawn`]: ../../std/thread/struct.Builder.html#method.spawn /// [`io::Result`]: ../../std/io/type.Result.html /// [`JoinHandle`]: ../../std/thread/struct.JoinHandle.html - #[unstable(feature = "thread_spawn_unchecked", issue = "0")] + #[unstable(feature = "thread_spawn_unchecked", issue = "55132")] pub unsafe fn spawn_unchecked<F, T>(self, f: F) -> io::Result<JoinHandle<T>> where F: FnOnce() -> T, F: Send, T: Send { |
