summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJethro Beekman <jethro@fortanix.com>2020-07-20 12:23:47 +0200
committerJethro Beekman <jethro@fortanix.com>2020-07-20 12:44:37 +0200
commitc8cdcc8e517ab5831328ba71f57f00d177913174 (patch)
tree081156c35b471755146a2839acf28beefba2be5d
parent05630b06fdf76c25c6ccf2e9ac3567592eae6c67 (diff)
downloadrust-c8cdcc8e517ab5831328ba71f57f00d177913174.tar.gz
Fix duplicate maybe_uninit_extra attribute
-rw-r--r--src/libstd/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 11b8f953be4..02de3fff29f 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -224,10 +224,7 @@
all(target_vendor = "fortanix", target_env = "sgx"),
feature(slice_index_methods, coerce_unsized, sgx_platform, ptr_wrapping_offset_from)
)]
-#![cfg_attr(
- all(test, target_vendor = "fortanix", target_env = "sgx"),
- feature(fixed_size_array, maybe_uninit_extra)
-)]
+#![cfg_attr(all(test, target_vendor = "fortanix", target_env = "sgx"), feature(fixed_size_array))]
// std is implemented with unstable features, many of which are internal
// compiler details that will never be stable
// NB: the following list is sorted to minimize merge conflicts.