]> git.lizzy.rs Git - rust.git/commitdiff
Remove feature(import_shadowing) from all crates.
authorEduard Burtescu <edy.burt@gmail.com>
Wed, 3 Dec 2014 23:58:26 +0000 (01:58 +0200)
committerEduard Burtescu <edy.burt@gmail.com>
Sat, 20 Dec 2014 04:37:14 +0000 (06:37 +0200)
src/libcollections/lib.rs
src/libfmt_macros/lib.rs
src/libgetopts/lib.rs
src/librustc/lib.rs
src/librustc_borrowck/lib.rs
src/librustc_driver/lib.rs
src/librustc_trans/lib.rs
src/librustc_typeck/lib.rs
src/libstd/lib.rs
src/libsyntax/lib.rs

index a8eb10e51635ff975c8725766a5c075af2fa434a..051079a528e5a57f3a0af5727d3c28043dd057de 100644 (file)
@@ -23,7 +23,7 @@
 
 #![allow(unknown_features)]
 #![feature(macro_rules, default_type_params, phase, globs)]
-#![feature(unsafe_destructor, import_shadowing, slicing_syntax)]
+#![feature(unsafe_destructor, slicing_syntax)]
 #![feature(unboxed_closures)]
 #![no_std]
 
index 3099bf559e4bfa2384a2bc36536106137d99a79c..106e467c1691a4af79a3b15953e8a759d8dc48f9 100644 (file)
@@ -23,7 +23,7 @@
        html_root_url = "http://doc.rust-lang.org/nightly/",
        html_playground_url = "http://play.rust-lang.org/")]
 
-#![feature(macro_rules, globs, import_shadowing)]
+#![feature(macro_rules, globs)]
 pub use self::Piece::*;
 pub use self::Position::*;
 pub use self::Alignment::*;
index b45d0c9b01ecde60392832e736d1d696c817e714..e362c67cc50974d207beb63e591acc4eaafe2a8c 100644 (file)
@@ -86,7 +86,6 @@
        html_root_url = "http://doc.rust-lang.org/nightly/",
        html_playground_url = "http://play.rust-lang.org/")]
 #![feature(globs, phase)]
-#![feature(import_shadowing)]
 #![feature(unboxed_closures)]
 #![deny(missing_docs)]
 
index 90e9973c3f302f9d8ae4c2882f7ea3a114ef9917..1f729d9b7c6f6cdb68e4838d292fa1cf08ca148e 100644 (file)
@@ -22,7 +22,7 @@
       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
       html_root_url = "http://doc.rust-lang.org/nightly/")]
 
-#![feature(default_type_params, globs, import_shadowing, macro_rules, phase, quote)]
+#![feature(default_type_params, globs, macro_rules, phase, quote)]
 #![feature(slicing_syntax, unsafe_destructor)]
 #![feature(rustc_diagnostic_macros)]
 #![feature(unboxed_closures)]
index ffc5a3919b60f96605e9e867bcb6203229e21214..e71e9e5dfea1b87728a9bd6170044e5849471207 100644 (file)
@@ -16,7 +16,7 @@
       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
       html_root_url = "http://doc.rust-lang.org/nightly/")]
 
-#![feature(default_type_params, globs, import_shadowing, macro_rules, phase, quote)]
+#![feature(default_type_params, globs, macro_rules, phase, quote)]
 #![feature(slicing_syntax, unsafe_destructor)]
 #![feature(rustc_diagnostic_macros)]
 #![feature(unboxed_closures)]
index 120654678e96e9d2b83431b47b60e787f75eecef..22465e3074c28df4dc38abee0d6e0442b7745f61 100644 (file)
@@ -22,7 +22,7 @@
       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
       html_root_url = "http://doc.rust-lang.org/nightly/")]
 
-#![feature(default_type_params, globs, import_shadowing, macro_rules, phase, quote)]
+#![feature(default_type_params, globs, macro_rules, phase, quote)]
 #![feature(slicing_syntax, unsafe_destructor)]
 #![feature(rustc_diagnostic_macros)]
 #![feature(unboxed_closures)]
index 05b1a86b72b05171a3f88ce1b2408ca3a3c220a8..784002287b7502ee2c99e87bf7785675eced0e63 100644 (file)
@@ -22,7 +22,7 @@
       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
       html_root_url = "http://doc.rust-lang.org/nightly/")]
 
-#![feature(default_type_params, globs, import_shadowing, macro_rules, phase, quote)]
+#![feature(default_type_params, globs, macro_rules, phase, quote)]
 #![feature(slicing_syntax, unsafe_destructor)]
 #![feature(rustc_diagnostic_macros)]
 #![feature(unboxed_closures)]
index 5fc2466674ebe61dc9ba1bd5c51a7cf2364b1b6c..e6f643d878db32be0d51dabb0a595bdd5da82e48 100644 (file)
@@ -71,7 +71,7 @@
       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
       html_root_url = "http://doc.rust-lang.org/nightly/")]
 
-#![feature(default_type_params, globs, import_shadowing, macro_rules, phase, quote)]
+#![feature(default_type_params, globs, macro_rules, phase, quote)]
 #![feature(slicing_syntax, unsafe_destructor)]
 #![feature(rustc_diagnostic_macros)]
 #![feature(unboxed_closures)]
index 78c194745a88838c9c3bc3a082b6146e34164ab1..c46ebae867597bb45957aaa0ad5faac7a2fa38bd 100644 (file)
 #![allow(unknown_features)]
 #![feature(macro_rules, globs, linkage, thread_local, asm)]
 #![feature(default_type_params, phase, lang_items, unsafe_destructor)]
-#![feature(import_shadowing, slicing_syntax, tuple_indexing)]
-#![feature(unboxed_closures)]
+#![feature(slicing_syntax, unboxed_closures)]
 
 // Don't link to std. We are std.
 #![no_std]
index 5d5b56d444f8ec2deb3a054f34e3cdf7f82f908d..5f62c74ef0742814e524db0b63c3dd64fa006cbc 100644 (file)
@@ -24,7 +24,7 @@
 
 #![allow(unknown_features)]
 #![feature(macro_rules, globs, default_type_params, phase, slicing_syntax)]
-#![feature(quote, unsafe_destructor, import_shadowing)]
+#![feature(quote, unsafe_destructor)]
 #![feature(unboxed_closures)]
 
 extern crate arena;