diff options
| author | bors <bors@rust-lang.org> | 2019-07-28 16:34:59 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-07-28 16:34:59 +0000 |
| commit | 4560cb830fce63fcffdc4558f4281aaac6a3a1ba (patch) | |
| tree | 3863f24b2c59b79009465a6f60990acdfccffe30 /src/librustc_codegen_utils | |
| parent | 023525dbda35748a10713471b948974b68a1c2cc (diff) | |
| parent | 1a370109ec176fa33a9cac2fe143b43c56ebcfd9 (diff) | |
| download | rust-4560cb830fce63fcffdc4558f4281aaac6a3a1ba.tar.gz rust-4560cb830fce63fcffdc4558f4281aaac6a3a1ba.zip | |
Auto merge of #62910 - petrochenkov:buildwarn2, r=Mark-Simulacrum
cleanup: Remove lint annotations in specific crates that are already enforced by rustbuild Remove some random unnecessary lint `allow`s. Deny `unused_lifetimes` through rustbuild. r? @Mark-Simulacrum
Diffstat (limited to 'src/librustc_codegen_utils')
| -rw-r--r-- | src/librustc_codegen_utils/codegen_backend.rs | 2 | ||||
| -rw-r--r-- | src/librustc_codegen_utils/lib.rs | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/librustc_codegen_utils/codegen_backend.rs b/src/librustc_codegen_utils/codegen_backend.rs index 7a7a50a25fa..262cfb1658e 100644 --- a/src/librustc_codegen_utils/codegen_backend.rs +++ b/src/librustc_codegen_utils/codegen_backend.rs @@ -5,8 +5,6 @@ //! This API is completely unstable and subject to change. #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")] -#![deny(warnings)] -#![feature(box_syntax)] use std::any::Any; use std::sync::mpsc; diff --git a/src/librustc_codegen_utils/lib.rs b/src/librustc_codegen_utils/lib.rs index f38b672afd9..4ea375b59b2 100644 --- a/src/librustc_codegen_utils/lib.rs +++ b/src/librustc_codegen_utils/lib.rs @@ -10,15 +10,11 @@ #![feature(core_intrinsics)] #![feature(never_type)] #![feature(nll)] -#![allow(unused_attributes)] #![feature(rustc_diagnostic_macros)] #![feature(in_band_lifetimes)] #![recursion_limit="256"] -#![deny(rust_2018_idioms)] -#![deny(unused_lifetimes)] - #[macro_use] extern crate rustc; |
