diff options
Diffstat (limited to 'components/plugins/lib.rs')
-rw-r--r-- | components/plugins/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/plugins/lib.rs b/components/plugins/lib.rs index 2a06fb36f74..a821bcea84b 100644 --- a/components/plugins/lib.rs +++ b/components/plugins/lib.rs @@ -14,7 +14,8 @@ #![feature(macro_rules, plugin_registrar, quote, phase)] -#![deny(unused_imports, unused_variable)] +#![deny(unused_imports)] +#![deny(unused_variables)] #[phase(plugin,link)] extern crate syntax; |