about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorStjepan Glavina <stjepang@gmail.com>2017-03-17 22:51:59 +0100
committerStjepan Glavina <stjepang@gmail.com>2017-03-21 20:46:20 +0100
commite365974750570c4e17cb02e66f0aa4f27b6776f5 (patch)
tree29ea7fc47e42cb14197369431062682ed39b61de /src/libcore
parentf1913e2a305f2ad9a655cb0a08cbce886e37ac27 (diff)
downloadrust-e365974750570c4e17cb02e66f0aa4f27b6776f5.tar.gz
rust-e365974750570c4e17cb02e66f0aa4f27b6776f5.zip
Address Alex's PR comments
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/slice/sort.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libcore/slice/sort.rs b/src/libcore/slice/sort.rs
index 7c751b5c5a3..5434bbbbf8c 100644
--- a/src/libcore/slice/sort.rs
+++ b/src/libcore/slice/sort.rs
@@ -16,8 +16,6 @@
 //! Unstable sorting is compatible with libcore because it doesn't allocate memory, unlike our
 //! stable sorting implementation.
 
-#![unstable(feature = "sort_unstable", issue = "40585")]
-
 use cmp;
 use mem;
 use ptr;