Skip to content

Commit

Permalink
Add a tracking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Jan 6, 2017
1 parent f2cb47a commit 54dc533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/binary_heap.rs
Expand Up @@ -254,7 +254,7 @@ impl<'a, T: Ord> DerefMut for PeekMut<'a, T> {

impl<'a, T: Ord> PeekMut<'a, T> {
/// Removes the peeked value from the heap and returns it.
#[unstable(feature = "binary_heap_peek_mut_pop", issue = "0")]
#[unstable(feature = "binary_heap_peek_mut_pop", issue = "38863")]
pub fn pop(mut this: PeekMut<'a, T>) -> T {
let value = this.heap.pop().unwrap();
this.sift = false;
Expand Down

0 comments on commit 54dc533

Please sign in to comment.