Remove stage0 hacks

This commit is contained in:
Brian Anderson
2016-09-28 20:55:26 +00:00
parent 6ffb39bd08
commit 3b49c60ab7
13 changed files with 4 additions and 38 deletions

View File

@@ -44,7 +44,6 @@ use core::cmp;
/// `shrink_to_fit`, and `from_box` will actually set RawVec's private capacity
/// field. This allows zero-sized types to not be special-cased by consumers of
/// this type.
#[cfg_attr(stage0, unsafe_no_drop_flag)]
pub struct RawVec<T> {
ptr: Unique<T>,
cap: usize,