1
Fork 0

Remove comment that is now false

This commit is contained in:
Tim Chevalier 2012-10-11 15:37:37 -07:00
parent bfbb7197d7
commit 6854265161
6 changed files with 40 additions and 29 deletions

View file

@ -190,7 +190,7 @@ impl<T: Send> &MutexARC<T> {
*
* Will additionally fail if another task has failed while accessing the arc.
*/
// FIXME(#2585) make this a by-move method on the arc
// FIXME(#3724) make this a by-move method on the arc
pub fn unwrap_mutex_arc<T: Send>(arc: MutexARC<T>) -> T {
let MutexARC { x: x } <- arc;
let inner = unsafe { unwrap_shared_mutable_state(move x) };
@ -368,7 +368,7 @@ impl<T: Const Send> &RWARC<T> {
* Will additionally fail if another task has failed while accessing the arc
* in write mode.
*/
// FIXME(#2585) make this a by-move method on the arc
// FIXME(#3724) make this a by-move method on the arc
pub fn unwrap_rw_arc<T: Const Send>(arc: RWARC<T>) -> T {
let RWARC { x: x, _ } <- arc;
let inner = unsafe { unwrap_shared_mutable_state(move x) };