about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-08-22 14:54:57 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-08-22 15:24:33 -0700
commit6f77fcbd0792f01f2b4fe91db8eca79f07a4bee0 (patch)
treee87061b8f99cc84977f55ead302f3b42b56f4490 /src
parent48a4bca0665f42991c0958818fd5597014e1129f (diff)
downloadrust-6f77fcbd0792f01f2b4fe91db8eca79f07a4bee0.tar.gz
rust-6f77fcbd0792f01f2b4fe91db8eca79f07a4bee0.zip
Comments only: update issue number for FIXME
Diffstat (limited to 'src')
-rw-r--r--src/libcore/send_map.rs3
1 files changed, 2 insertions, 1 deletions
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<Bucket<K,V>>]})
     }
 
-    // FIXME(#2979) -- with #2979 we could rewrite found_entry
+    // FIXME(#3148) -- we could rewrite found_entry
     // to have type option<&bucket<K,V>> which would be nifty
+    // However, that won't work until #3148 is fixed
     enum SearchResult {
         FoundEntry(uint), FoundHole(uint), TableFull
     }