diff options
| author | Ralf Jung <post@ralfj.de> | 2019-04-14 10:16:23 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2019-04-14 10:16:23 +0200 |
| commit | 8ef7ca130271369400719c712369c33a30d6528b (patch) | |
| tree | 0a92a6c9786e984c73b1526c94e945b978065fe4 /src/liballoc | |
| parent | cdf1d368e2376a94fc433fedc63171ed9e050289 (diff) | |
| download | rust-8ef7ca130271369400719c712369c33a30d6528b.tar.gz rust-8ef7ca130271369400719c712369c33a30d6528b.zip | |
make lint levels more consistent
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index 41e22d84699..d8d61c673af 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -58,13 +58,13 @@ #![no_std] #![needs_allocator] -#![deny(rust_2018_idioms)] -#![allow(explicit_outlives_requirements)] - #![warn(deprecated_in_future)] #![warn(missing_debug_implementations)] #![deny(intra_doc_link_resolution_failure)] // rustdoc is run without -D warnings +#![deny(rust_2018_idioms)] +#![allow(explicit_outlives_requirements)] + #![cfg_attr(not(test), feature(generator_trait))] #![cfg_attr(test, feature(test))] |
