diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-07-23 22:17:27 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-07-28 18:47:02 +0300 |
| commit | 676d282dd3cd2dedba651e98c9a41af42983f08b (patch) | |
| tree | 859875de5c271f683d5b57bb9ec4911e44388f16 /src/libstd | |
| parent | 434152157f9d73ad1899fb8da3a61aed6f8a46d6 (diff) | |
| download | rust-676d282dd3cd2dedba651e98c9a41af42983f08b.tar.gz rust-676d282dd3cd2dedba651e98c9a41af42983f08b.zip | |
Deny `unused_lifetimes` through rustbuild
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 1390341cf7c..8fd76eabe39 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -210,6 +210,7 @@ #![warn(missing_debug_implementations)] #![deny(intra_doc_link_resolution_failure)] // rustdoc is run without -D warnings #![allow(explicit_outlives_requirements)] +#![allow(unused_lifetimes)] // Tell the compiler to link to either panic_abort or panic_unwind #![needs_panic_runtime] |
