about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2018-04-01 09:35:53 -0600
committerMark Simulacrum <mark.simulacrum@gmail.com>2018-04-08 16:59:14 -0600
commitc115cc655c8bb3077ff349e4ddd704a2239438a6 (patch)
tree929e932baf457750f0f7296ea33f1457e6e2ce9b /src/libcore
parentb7da1aaff62c1394d56830dc975d24d99c7a4fd8 (diff)
downloadrust-c115cc655c8bb3077ff349e4ddd704a2239438a6.tar.gz
rust-c115cc655c8bb3077ff349e4ddd704a2239438a6.zip
Move deny(warnings) into rustbuild
This permits easier iteration without having to worry about warnings
being denied.

Fixes #49517
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/benches/lib.rs2
-rw-r--r--src/libcore/lib.rs1
-rw-r--r--src/libcore/tests/lib.rs2
3 files changed, 0 insertions, 5 deletions
diff --git a/src/libcore/benches/lib.rs b/src/libcore/benches/lib.rs
index c947b003ccb..ced77d77918 100644
--- a/src/libcore/benches/lib.rs
+++ b/src/libcore/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(flt2dec)]
 #![feature(test)]
 
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index cf9abb26d3e..e194b173aa7 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -63,7 +63,6 @@
 #![no_core]
 #![deny(missing_docs)]
 #![deny(missing_debug_implementations)]
-#![deny(warnings)]
 
 #![feature(allow_internal_unstable)]
 #![feature(asm)]
diff --git a/src/libcore/tests/lib.rs b/src/libcore/tests/lib.rs
index 971759dcdd0..c3162899bbd 100644
--- a/src/libcore/tests/lib.rs
+++ b/src/libcore/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(ascii_ctype)]
 #![feature(box_syntax)]
 #![feature(core_float)]