hashmap: add FIXME number

This commit is contained in:
Daniel Micay 2013-06-23 05:13:13 -04:00
parent 8baefec013
commit ac2e167e7e

View File

@ -719,7 +719,7 @@ impl<T:Hash + Eq> HashSet<T> {
}
/// Visit all elements in arbitrary order
/// FIXME: Remove when all callers are converted
/// FIXME: #6978: Remove when all callers are converted
pub fn each(&self, f: &fn(&T) -> bool) -> bool {
self.iter().advance(f)
}