We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f56a35 commit ec69a85Copy full SHA for ec69a85
library/std/src/sys/wasm/condvar_atomics.rs
@@ -9,7 +9,7 @@ pub struct Condvar {
9
cnt: AtomicUsize,
10
}
11
12
-pub type MovableCondvar = Box<Condvar>;
+pub type MovableCondvar = Condvar;
13
14
// Condition variables are implemented with a simple counter internally that is
15
// likely to cause spurious wakeups. Blocking on a condition variable will first
0 commit comments