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 }