From fc4da29b4f5e5b5eb4a5c47c724edde399d28145 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Thu, 11 Oct 2012 14:52:41 -0700 Subject: [PATCH] Update FIXME number --- src/libcore/private.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 Exclusive { } } -// 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(arc: Exclusive) -> T { let Exclusive { x: x } <- arc; let inner = unsafe { unwrap_shared_mutable_state(move x) };