Skip to content

Commit

Permalink
Fix insert_ordered in DList
Browse files Browse the repository at this point in the history
  • Loading branch information
aochagavia committed May 18, 2014
1 parent 75d3690 commit 3a1b7d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/dlist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ impl<T> DList<T> {
}
}

impl<T: Ord> DList<T> {
impl<T: TotalOrd> DList<T> {
/// Insert `elt` sorted in ascending order
///
/// O(N)
Expand Down

5 comments on commit 3a1b7d4

@bors
Copy link
Contributor

@bors bors commented on 3a1b7d4 May 19, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 3a1b7d4 May 19, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging aochagavia/rust/pr2 = 3a1b7d4 into auto

@bors
Copy link
Contributor

@bors bors commented on 3a1b7d4 May 19, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aochagavia/rust/pr2 = 3a1b7d4 merged ok, testing candidate = 42be687

@bors
Copy link
Contributor

@bors bors commented on 3a1b7d4 May 19, 2014

@bors
Copy link
Contributor

@bors bors commented on 3a1b7d4 May 19, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 42be687

Please sign in to comment.