diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-12-29 09:47:34 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-12-29 21:07:20 -0800 |
| commit | 9b0b5b45dbd268aba0a79453f506bfe00bb57042 (patch) | |
| tree | bed99f2a0b28120119afcec8b31ded71d9356372 /src/liballoc_jemalloc/lib.rs | |
| parent | 4ecc85beb339aa8089d936e450b0d800bdf580ae (diff) | |
| download | rust-9b0b5b45dbd268aba0a79453f506bfe00bb57042.tar.gz rust-9b0b5b45dbd268aba0a79453f506bfe00bb57042.zip | |
Remove not(stage0) from deny(warnings)
Historically this was done to accommodate bugs in lints, but there hasn't been a bug in a lint since this feature was added which the warnings affected. Let's completely purge warnings from all our stages by denying warnings in all stages. This will also assist in tracking down `stage0` code to be removed whenever we're updating the bootstrap compiler.
Diffstat (limited to 'src/liballoc_jemalloc/lib.rs')
| -rw-r--r-- | src/liballoc_jemalloc/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc_jemalloc/lib.rs b/src/liballoc_jemalloc/lib.rs index 21e45f9c4b2..e4a7dc0760d 100644 --- a/src/liballoc_jemalloc/lib.rs +++ b/src/liballoc_jemalloc/lib.rs @@ -16,7 +16,7 @@ reason = "this library is unlikely to be stabilized in its current \ form or name", issue = "27783")] -#![cfg_attr(not(stage0), deny(warnings))] +#![deny(warnings)] #![feature(allocator)] #![feature(libc)] #![feature(staged_api)] |
