diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2021-09-19 14:02:38 -0400 | 
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2021-09-23 12:56:59 -0400 | 
| commit | 0222556c077110516356c205948d1dd12edc5588 (patch) | |
| tree | 660a5bb0ca4f1234f983421736fa62f3db4fb528 /compiler/rustc_interface/src/lib.rs | |
| parent | 0132f8258ae0fbc4f2b461b28d510222d22aa979 (diff) | |
| download | rust-0222556c077110516356c205948d1dd12edc5588.tar.gz rust-0222556c077110516356c205948d1dd12edc5588.zip | |
Simplify scoped_thread
Avoids a bunch of manual pointer manipulation.
Diffstat (limited to 'compiler/rustc_interface/src/lib.rs')
| -rw-r--r-- | compiler/rustc_interface/src/lib.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/compiler/rustc_interface/src/lib.rs b/compiler/rustc_interface/src/lib.rs index c7424b9e2a1..2fc3759968f 100644 --- a/compiler/rustc_interface/src/lib.rs +++ b/compiler/rustc_interface/src/lib.rs @@ -1,6 +1,7 @@ #![feature(bool_to_option)] #![feature(box_patterns)] #![feature(internal_output_capture)] +#![feature(thread_spawn_unchecked)] #![feature(nll)] #![feature(once_cell)] #![recursion_limit = "256"] | 
