diff options
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 3f4146eedfe..f556dda6eb9 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -4,13 +4,13 @@ #![feature(default_type_params,macro_rules,unsafe_destructor)] -#![deny(unused_imports, unused_variable)] +#![deny(unused_imports)] +#![deny(unused_variables)] #![feature(phase)] #[phase(plugin, link)] extern crate log; -extern crate debug; extern crate alloc; extern crate collections; extern crate geom; |