about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-04-11 03:30:04 +0000
committerbors <bors@rust-lang.org>2018-04-11 03:30:04 +0000
commit43e994c8b8f97246db16b82cea50d3eafecc3dd9 (patch)
tree214bd3d3576f2d50040b2a985a4e3f2323522a9e /src/liballoc
parent88ebd97d650dc70324db189b3159dff068accd3c (diff)
parent53718d2ef1729c987531dc94971c905815daef55 (diff)
downloadrust-43e994c8b8f97246db16b82cea50d3eafecc3dd9.tar.gz
rust-43e994c8b8f97246db16b82cea50d3eafecc3dd9.zip
Auto merge of #49715 - Mark-Simulacrum:deny-warnings, r=alexcrichton
Move deny(warnings) into rustbuild

This permits easier iteration without having to worry about warnings
being denied.

Fixes #49517
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/benches/lib.rs2
-rw-r--r--src/liballoc/lib.rs1
-rw-r--r--src/liballoc/tests/lib.rs2
3 files changed, 0 insertions, 5 deletions
diff --git a/src/liballoc/benches/lib.rs b/src/liballoc/benches/lib.rs
index 4d92fc67b2a..4f69aa6670b 100644
--- a/src/liballoc/benches/lib.rs
+++ b/src/liballoc/benches/lib.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![deny(warnings)]
-
 #![feature(rand)]
 #![feature(repr_simd)]
 #![feature(slice_sort_by_cached_key)]
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index da26e7c852c..b08bd66b47c 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -72,7 +72,6 @@
        test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
 #![no_std]
 #![needs_allocator]
-#![deny(warnings)]
 #![deny(missing_debug_implementations)]
 
 #![cfg_attr(test, allow(deprecated))] // rand
diff --git a/src/liballoc/tests/lib.rs b/src/liballoc/tests/lib.rs
index a173ef10a81..17f1d0464a5 100644
--- a/src/liballoc/tests/lib.rs
+++ b/src/liballoc/tests/lib.rs
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![deny(warnings)]
-
 #![feature(allocator_api)]
 #![feature(alloc_system)]
 #![feature(attr_literals)]