about summary refs log tree commit diff
path: root/src/libstd/priority_queue.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-05-20 02:46:36 -0700
committerbors <bors@rust-lang.org>2013-05-20 02:46:36 -0700
commit2e6cda254a2acdcd60efb62a27f69c7702b8f71e (patch)
treeba2b843a8a0cd261cf94b4e6ab017d0918841f3c /src/libstd/priority_queue.rs
parentab46a38039c320bd2011160fdd8a86828172d29e (diff)
parent66319b027888ceddf024a5919e007caceaf369f3 (diff)
downloadrust-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.rs6
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() }