Update FIXME number

This commit is contained in:
Tim Chevalier 2012-10-11 14:52:41 -07:00
parent 71813b3793
commit fc4da29b4f

View File

@ -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) };