From 6f77fcbd0792f01f2b4fe91db8eca79f07a4bee0 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Wed, 22 Aug 2012 14:54:57 -0700 Subject: [PATCH] Comments only: update issue number for FIXME --- src/libcore/send_map.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libcore/send_map.rs b/src/libcore/send_map.rs index 9b5b6e0d4f3..ea440899fe7 100644 --- a/src/libcore/send_map.rs +++ b/src/libcore/send_map.rs @@ -28,8 +28,9 @@ mod linear { buckets: ~[option>]}) } - // FIXME(#2979) -- with #2979 we could rewrite found_entry + // FIXME(#3148) -- we could rewrite found_entry // to have type option<&bucket> which would be nifty + // However, that won't work until #3148 is fixed enum SearchResult { FoundEntry(uint), FoundHole(uint), TableFull }