about summary refs log tree commit diff
path: root/src/rustc
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-08-01 13:35:33 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-08-01 13:35:40 -0700
commit7f60c56c3e1abfc9cae313ba8d0ed26ff455a9c1 (patch)
treeda38f0b6b05d218bcb25e4f303ddc3d3538285db /src/rustc
parente7a69fbe4e33602dd6f78d140aafa5125b8eec71 (diff)
downloadrust-7f60c56c3e1abfc9cae313ba8d0ed26ff455a9c1.tar.gz
rust-7f60c56c3e1abfc9cae313ba8d0ed26ff455a9c1.zip
Clean out transitional lint.
Diffstat (limited to 'src/rustc')
-rw-r--r--src/rustc/driver/rustc.rs5
-rw-r--r--src/rustc/rustc.rc5
2 files changed, 0 insertions, 10 deletions
diff --git a/src/rustc/driver/rustc.rs b/src/rustc/driver/rustc.rs
index dfc946a036a..5a592434710 100644
--- a/src/rustc/driver/rustc.rs
+++ b/src/rustc/driver/rustc.rs
@@ -1,9 +1,4 @@
 #[no_core];
-// NB: transitional for stage0:
-#[allow(unrecognized_lint)];
-#[warn(no_unrecognized_warning)];
-#[warn(no_vecs_not_implicitly_copyable)];
-// The new version:
 #[allow(vecs_implicitly_copyable)];
 
 use core(vers = "0.3");
diff --git a/src/rustc/rustc.rc b/src/rustc/rustc.rc
index 0c0b2764f3b..99a32d3a4ab 100644
--- a/src/rustc/rustc.rc
+++ b/src/rustc/rustc.rc
@@ -11,11 +11,6 @@
 
 #[no_core];
 
-// NB: transitional for stage0:
-#[allow(unrecognized_lint)];
-#[warn(no_unrecognized_warning)];
-#[warn(no_vecs_not_implicitly_copyable)];
-// The new version:
 #[allow(vecs_implicitly_copyable)];
 
 use core(vers = "0.3");