diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-06-23 05:13:13 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-06-23 05:13:13 -0400 |
| commit | ac2e167e7ed73cdb8863075d09633bb91ca0028f (patch) | |
| tree | d62947081b17299873ac268a8a9d1825cdc052aa /src/libstd | |
| parent | 8baefec013876a46c084cf88d48c760a659e713f (diff) | |
| download | rust-ac2e167e7ed73cdb8863075d09633bb91ca0028f.tar.gz rust-ac2e167e7ed73cdb8863075d09633bb91ca0028f.zip | |
hashmap: add FIXME number
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/hashmap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/hashmap.rs b/src/libstd/hashmap.rs index 0b6bf339d7e..7d55947e818 100644 --- a/src/libstd/hashmap.rs +++ b/src/libstd/hashmap.rs @@ -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) } |
