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/libstd/lib.rs | |
| 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/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 722c08a22a6..8fd76eabe39 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -209,9 +209,8 @@ #![warn(missing_docs)] #![warn(missing_debug_implementations)] #![deny(intra_doc_link_resolution_failure)] // rustdoc is run without -D warnings - -#![deny(rust_2018_idioms)] #![allow(explicit_outlives_requirements)] +#![allow(unused_lifetimes)] // Tell the compiler to link to either panic_abort or panic_unwind #![needs_panic_runtime] |
