From 54dc533494bba8256dcd7c54597fb1d42ef070ab Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 5 Jan 2017 19:36:35 -0800 Subject: [PATCH] Add a tracking issue --- src/libcollections/binary_heap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/binary_heap.rs b/src/libcollections/binary_heap.rs index c53b34d589b..7d245f79f69 100644 --- a/src/libcollections/binary_heap.rs +++ b/src/libcollections/binary_heap.rs @@ -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;