From c656b769aeb6007def22a14ea4e81faa81b092f4 Mon Sep 17 00:00:00 2001 From: Simon Wollwage Date: Sun, 16 Nov 2014 22:34:07 +0100 Subject: [PATCH] removed struct_variant feature as it is not gated anymore --- src/librustc/lib.rs | 2 +- src/librustdoc/lib.rs | 2 +- src/libsyntax/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 7a34c5977d67c..7b37a7878bb42 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -29,7 +29,7 @@ This API is completely unstable and subject to change. html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(default_type_params, globs, if_let, import_shadowing, macro_rules, phase, quote)] -#![feature(slicing_syntax, struct_variant, unsafe_destructor)] +#![feature(slicing_syntax, unsafe_destructor)] #![feature(rustc_diagnostic_macros)] extern crate arena; diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 7343d67497235..ae505304d393d 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -16,7 +16,7 @@ #![crate_type = "rlib"] #![allow(unknown_features)] -#![feature(globs, struct_variant, macro_rules, phase, slicing_syntax, tuple_indexing)] +#![feature(globs, macro_rules, phase, slicing_syntax, tuple_indexing)] extern crate arena; extern crate getopts; diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index fa10cb90f83a9..c9d72603b8919 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -25,7 +25,7 @@ #![allow(unknown_features)] #![feature(if_let, macro_rules, globs, default_type_params, phase, slicing_syntax)] -#![feature(quote, struct_variant, unsafe_destructor, import_shadowing)] +#![feature(quote, unsafe_destructor, import_shadowing)] extern crate arena; extern crate fmt_macros;