fix recursive call
This commit is contained in:
parent
d4b3e7f09c
commit
cb896a6e5f
1 changed files with 1 additions and 1 deletions
|
|
@ -655,7 +655,7 @@ impl<T: Ord> FromIterator<T> for BinaryHeap<T> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<T> IntoIterator for BinaryHeap<T> {
|
||||
impl<T: Ord> IntoIterator for BinaryHeap<T> {
|
||||
type Iter = IntoIter<T>;
|
||||
|
||||
fn into_iter(self) -> IntoIter<T> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue