diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2018-06-15 03:36:34 +0200 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2018-06-29 14:01:33 +0200 |
| commit | 1acbb0a9350560d951359cc359361b87992a6f2b (patch) | |
| tree | d2efd3eb9cb07f7eae7ab8386ba76bf84ed4b0fa /src/liballoc | |
| parent | 6e5e63a48c3be7de2faf914c2a9e194ff7cede9e (diff) | |
| download | rust-1acbb0a9350560d951359cc359361b87992a6f2b.tar.gz rust-1acbb0a9350560d951359cc359361b87992a6f2b.zip | |
Make raw_vec perma-unstable and hidden
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/raw_vec.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/liballoc/raw_vec.rs b/src/liballoc/raw_vec.rs index 2369ce648fd..5095bbe96cc 100644 --- a/src/liballoc/raw_vec.rs +++ b/src/liballoc/raw_vec.rs @@ -8,6 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +#![unstable(feature = "raw_vec_internals", reason = "implemention detail", issue = "0")] +#![doc(hidden)] + use core::cmp; use core::mem; use core::ops::Drop; @@ -264,7 +267,7 @@ impl<T, A: Alloc> RawVec<T, A> { /// # Examples /// /// ``` - /// # #![feature(alloc)] + /// # #![feature(alloc, raw_vec_internals)] /// # extern crate alloc; /// # use std::ptr; /// # use alloc::raw_vec::RawVec; @@ -468,7 +471,7 @@ impl<T, A: Alloc> RawVec<T, A> { /// # Examples /// /// ``` - /// # #![feature(alloc)] + /// # #![feature(alloc, raw_vec_internals)] /// # extern crate alloc; /// # use std::ptr; /// # use alloc::raw_vec::RawVec; |
