diff options
author | Jack Moffitt <jack@metajack.im> | 2014-09-13 23:38:00 -0600 |
---|---|---|
committer | Jack Moffitt <jack@metajack.im> | 2014-09-13 23:38:00 -0600 |
commit | e10206e91e38ee87b8c0df3fb4d64d52fd03e481 (patch) | |
tree | c989228e7167bddea39cb9c16a0f73780dac0341 /components/msg/lib.rs | |
parent | 97e068b1c27b2b2aa48e38550e6adbdc42bba8c3 (diff) | |
download | servo-e10206e91e38ee87b8c0df3fb4d64d52fd03e481.tar.gz servo-e10206e91e38ee87b8c0df3fb4d64d52fd03e481.zip |
Reinstate errors for unused variables and imports.
Diffstat (limited to 'components/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 129ce20ca5a..b2ddb8427b9 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -2,6 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#![deny(unused_imports, unused_variable)] + extern crate azure; extern crate geom; extern crate layers; |