about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-03-12 09:34:04 +0000
committerbors <bors@rust-lang.org>2019-03-12 09:34:04 +0000
commit6e2b8fa8ca1eee666122cd99a2168986649b09e0 (patch)
tree5d78d168fa74ab37fe03f093e55e592c9bd3d468
parent3d31c2157a04b324bc2cece20db8b46b6e4a8f62 (diff)
parentc730de955e6098359cef8ec37c90627402a41e1e (diff)
downloadrust-6e2b8fa8ca1eee666122cd99a2168986649b09e0.tar.gz
rust-6e2b8fa8ca1eee666122cd99a2168986649b09e0.zip
Auto merge of #3872 - phansch:some_feature_cleanup, r=oli-obk
Remove some unused features and `error-pattern`s

None
-rw-r--r--src/driver.rs3
-rw-r--r--src/lib.rs1
-rw-r--r--src/main.rs5
3 files changed, 0 insertions, 9 deletions
diff --git a/src/driver.rs b/src/driver.rs
index 82326bf780c..01358f46dd7 100644
--- a/src/driver.rs
+++ b/src/driver.rs
@@ -1,7 +1,4 @@
-// error-pattern:yummy
-#![feature(box_syntax)]
 #![feature(rustc_private)]
-#![allow(clippy::missing_docs_in_private_items)]
 
 // FIXME: switch to something more ergonomic here, once available.
 // (Currently there is no way to opt into sysroot crates without `extern crate`.)
diff --git a/src/lib.rs b/src/lib.rs
index 63af1283bcc..86174a6b316 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,6 @@
 // error-pattern:cargo-clippy
 #![feature(plugin_registrar)]
 #![feature(rustc_private)]
-#![allow(clippy::missing_docs_in_private_items)]
 #![warn(rust_2018_idioms)]
 
 // FIXME: switch to something more ergonomic here, once available.
diff --git a/src/main.rs b/src/main.rs
index 208262ca30f..e0b2bcc7266 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,8 +1,3 @@
-// error-pattern:yummy
-#![feature(box_syntax)]
-#![feature(rustc_private)]
-#![allow(clippy::missing_docs_in_private_items)]
-
 use rustc_tools_util::*;
 
 const CARGO_CLIPPY_HELP: &str = r#"Checks a package to catch common mistakes and improve your Rust code.