diff options
author | Jack Moffitt <jack@metajack.im> | 2014-11-05 12:33:11 -0700 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2014-11-13 11:17:43 +1000 |
commit | d1b433a3b3bab353f320b2f39fa953ce326d2d55 (patch) | |
tree | d7a197abb65827b36c47e6b5c3adcce9071643d3 /components/layout/lib.rs | |
parent | 26045d7fcbab8851fbefe2851cd904203f8fd8dd (diff) | |
download | servo-d1b433a3b3bab353f320b2f39fa953ce326d2d55.tar.gz servo-d1b433a3b3bab353f320b2f39fa953ce326d2d55.zip |
Rust upgrade to rustc hash b03a2755193cd756583bcf5831cf4545d75ecb8a
Diffstat (limited to 'components/layout/lib.rs')
-rw-r--r-- | components/layout/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/layout/lib.rs b/components/layout/lib.rs index 7598226e8e3..6489f6fe307 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -7,14 +7,13 @@ #![feature(globs, macro_rules, phase, thread_local, unsafe_destructor)] -#![deny(unused_imports, unused_variable)] +#![deny(unused_imports)] +#![deny(unused_variables)] #![allow(unrooted_must_root)] #[phase(plugin, link)] extern crate log; -extern crate debug; - extern crate geom; extern crate gfx; extern crate layout_traits; |