diff options
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/private.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/private.rs b/src/libcore/private.rs index c4ef136a592..b7be29d8fbd 100644 --- a/src/libcore/private.rs +++ b/src/libcore/private.rs @@ -544,7 +544,7 @@ impl<T: Send> Exclusive<T> { } } -// FIXME(#2585) make this a by-move method on the exclusive +// FIXME(#3724) make this a by-move method on the exclusive pub fn unwrap_exclusive<T: Send>(arc: Exclusive<T>) -> T { let Exclusive { x: x } <- arc; let inner = unsafe { unwrap_shared_mutable_state(move x) }; |
