diff options
author | Josh Matthews <josh@joshmatthews.net> | 2015-02-09 17:41:57 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-02-09 17:41:57 -0500 |
commit | 446f0f447eb1f915a3edfbfa5f662d055f8c984a (patch) | |
tree | c65590c6fac2098ba7f8c4f2748c598eca13e43f /components/script | |
parent | 1af8170037922250bbc3884f94c8a647f495eeb3 (diff) | |
download | servo-446f0f447eb1f915a3edfbfa5f662d055f8c984a.tar.gz servo-446f0f447eb1f915a3edfbfa5f662d055f8c984a.zip |
Allow unused variables, imports, and mutable.
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 91c22329d0d..d5a4c72f9cb 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -5,8 +5,6 @@ #![feature(unsafe_destructor, plugin, box_syntax, int_uint)] #![deny(unsafe_blocks)] -#![deny(unused_imports)] -#![deny(unused_variables)] #![allow(non_snake_case)] #![allow(missing_copy_implementations)] #![allow(unstable)] |