Skip to content

Commit df55204

Browse files
authored
Rollup merge of #86807 - tversteeg:patch-1, r=bjorn3
Fix double import in wasm thread The `unsupported` type is imported two times, as `super::unsupported` and as `crate::sys::unsupported`, throwing an error. Remove `super::unsupported` in favor of the other. As reported in #86802. Fix #86802
2 parents 6107340 + d3bf89b commit df55204

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

library/std/src/sys/wasm/atomics/thread.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use super::unsupported;
21
use crate::ffi::CStr;
32
use crate::io;
43
use crate::num::NonZeroUsize;

0 commit comments

Comments
 (0)