diff options
| author | Jonathan Turner <jonathandturner@users.noreply.github.com> | 2016-09-28 20:21:52 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-28 20:21:52 -0700 |
| commit | 02c050644bf2361dad41557b2972d6bf84604e74 (patch) | |
| tree | 4cd05071a4d498466dd7ad0161037293a050396f /src/libstd | |
| parent | 47a335b67711d7a5cdcf7b6c2469a5adc597a54e (diff) | |
| parent | 3b49c60ab71547e6dbaef086eb4cd2bb7fe9ff94 (diff) | |
| download | rust-02c050644bf2361dad41557b2972d6bf84604e74.tar.gz rust-02c050644bf2361dad41557b2972d6bf84604e74.zip | |
Rollup merge of #36811 - brson:bootstrap, r=alexcrichton
Update bootstrap compiler
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/collections/hash/table.rs | 1 | ||||
| -rw-r--r-- | src/libstd/lib.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/libstd/collections/hash/table.rs b/src/libstd/collections/hash/table.rs index 8f02c9c7d3d..afd833d8bdd 100644 --- a/src/libstd/collections/hash/table.rs +++ b/src/libstd/collections/hash/table.rs @@ -59,7 +59,6 @@ const EMPTY_BUCKET: u64 = 0; /// around just the "table" part of the hashtable. It enforces some /// invariants at the type level and employs some performance trickery, /// but in general is just a tricked out `Vec<Option<u64, K, V>>`. -#[cfg_attr(stage0, unsafe_no_drop_flag)] pub struct RawTable<K, V> { capacity: usize, size: usize, diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 912045453e0..b3e4351e9b2 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -278,7 +278,6 @@ #![feature(unboxed_closures)] #![feature(unicode)] #![feature(unique)] -#![cfg_attr(stage0, feature(unsafe_no_drop_flag))] #![feature(unwind_attributes)] #![feature(vec_push_all)] #![feature(zero_one)] |
