about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-07-20 15:48:15 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-07-25 07:09:31 -0700
commitdaeb6077c87dab99f2d301d06965558b8d064c28 (patch)
tree5d2e0bd91e7e7fc18a832bc119383ded2d3b9816 /src/liballoc
parent3fae48107f62af7d2a6b0cf269dbda7b88f34f35 (diff)
downloadrust-daeb6077c87dab99f2d301d06965558b8d064c28.tar.gz
rust-daeb6077c87dab99f2d301d06965558b8d064c28.zip
std: Stabilize `manually_drop` feature
Stabilizes

* `core::mem::ManuallyDrop`
* `std::mem::ManuallyDrop`
* `ManuallyDrop::new`
* `ManuallyDrop::into_inner`
* `ManuallyDrop::drop`
* `Deref for ManuallyDrop`
* `DerefMut for ManuallyDrop`

Closes #40673
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index 2b28538c47d..7c25dcada71 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -101,7 +101,6 @@
 #![feature(i128_type)]
 #![feature(inclusive_range)]
 #![feature(lang_items)]
-#![feature(manually_drop)]
 #![feature(needs_allocator)]
 #![feature(nonzero)]
 #![feature(offset_to)]