diff options
| author | bors <bors@rust-lang.org> | 2013-05-20 02:46:36 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-05-20 02:46:36 -0700 |
| commit | 2e6cda254a2acdcd60efb62a27f69c7702b8f71e (patch) | |
| tree | ba2b843a8a0cd261cf94b4e6ab017d0918841f3c /src/libstd/priority_queue.rs | |
| parent | ab46a38039c320bd2011160fdd8a86828172d29e (diff) | |
| parent | 66319b027888ceddf024a5919e007caceaf369f3 (diff) | |
| download | rust-2e6cda254a2acdcd60efb62a27f69c7702b8f71e.tar.gz rust-2e6cda254a2acdcd60efb62a27f69c7702b8f71e.zip | |
auto merge of #6635 : brson/rust/snapshot, r=brson
Diffstat (limited to 'src/libstd/priority_queue.rs')
| -rw-r--r-- | src/libstd/priority_queue.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libstd/priority_queue.rs b/src/libstd/priority_queue.rs index b54fc81aac1..2f5d12d0807 100644 --- a/src/libstd/priority_queue.rs +++ b/src/libstd/priority_queue.rs @@ -22,12 +22,6 @@ impl<T:Ord> BaseIter<T> for PriorityQueue<T> { /// Visit all values in the underlying vector. /// /// The values are **not** visited in order. - #[cfg(stage0)] - fn each(&self, f: &fn(&T) -> bool) { self.data.each(f) } - /// Visit all values in the underlying vector. - /// - /// The values are **not** visited in order. - #[cfg(not(stage0))] fn each(&self, f: &fn(&T) -> bool) -> bool { self.data.each(f) } fn size_hint(&self) -> Option<uint> { self.data.size_hint() } |
