Auto merge of #33050 - apasel422:bh, r=alexcrichton

Implement `Clone` for `binary_heap::IntoIter`

r? @alexcrichton
This commit is contained in:
bors 2016-04-17 11:17:54 -07:00
commit 412e6f7e84

View File

@ -919,6 +919,7 @@ impl<'a, T> ExactSizeIterator for Iter<'a, T> {}
/// An iterator that moves out of a `BinaryHeap`.
#[stable(feature = "rust1", since = "1.0.0")]
#[derive(Clone)]
pub struct IntoIter<T> {
iter: vec::IntoIter<T>,
}