diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2020-09-16 21:16:32 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2020-09-16 21:16:32 +0200 |
| commit | 0bb96e7490299977abf2d3af16dd752d67ca43a9 (patch) | |
| tree | 551315baea16843003cdfbe7f2f32b0afda263e0 /library/std/src/lib.rs | |
| parent | 3fadc603ab3fba157dfa7001fd9122692f40746a (diff) | |
| download | rust-0bb96e7490299977abf2d3af16dd752d67ca43a9.tar.gz rust-0bb96e7490299977abf2d3af16dd752d67ca43a9.zip | |
Avoid creating `&mut`s in Windows ReentrantMutex.
Diffstat (limited to 'library/std/src/lib.rs')
| -rw-r--r-- | library/std/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index 307e222f713..9ffe0d68c3a 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -315,6 +315,7 @@ #![feature(try_reserve)] #![feature(unboxed_closures)] #![feature(unsafe_block_in_unsafe_fn)] +#![feature(unsafe_cell_raw_get)] #![feature(untagged_unions)] #![feature(unwind_attributes)] #![feature(vec_into_raw_parts)] |
