From 2fc2e2d5ea6401e352d79a9bac085c9961162696 Mon Sep 17 00:00:00 2001 From: Ben Blum Date: Thu, 26 Jul 2012 19:31:21 -0400 Subject: [PATCH] Add issue number #3039 to dlist destructor --- src/libcore/dlist.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/dlist.rs b/src/libcore/dlist.rs index cd36d14816cb..d11fc6efba46 100644 --- a/src/libcore/dlist.rs +++ b/src/libcore/dlist.rs @@ -26,7 +26,7 @@ class dlist_root { self.size = 0; self.hd = none; self.tl = none; } drop { - /* FIXME (#????) This doesn't work during task failure - the box + /* FIXME (#3039) This doesn't work during task failure - the box * annihilator might have killed some of our nodes already. This will * be safe to uncomment when the box annihilator is safer. As is, * this makes test_dlist_cyclic_link below crash the runtime.