diff options
author | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-10-31 15:27:44 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-10-31 20:09:02 +0100 |
commit | efb05d55eaddc42dfe47ca540c99a10942e0b69b (patch) | |
tree | 6a3d1bef5cb7b99dbda07d64dd63c4361b628e36 | |
parent | de27c177f04f445a91c4ee5f0a83c0428abc6bc4 (diff) |
Make the build deny(warnings).
-rw-r--r-- | src/ir/ty.rs | 2 | ||||
-rwxr-xr-x | src/lib.rs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ir/ty.rs b/src/ir/ty.rs index c373828a..2cb4762c 100644 --- a/src/ir/ty.rs +++ b/src/ir/ty.rs @@ -605,7 +605,7 @@ impl Type { // If the type name is empty we're probably // over-recursing to find a template parameter name // or something like that, so just don't be too - // noisy with it sine it causes confusion, see for + // noisy with it since it causes confusion, see for // example the discussion in: // // https://github.com/jamesmunns/teensy3-rs/issues/9 @@ -12,6 +12,7 @@ #![cfg_attr(feature = "clippy", plugin(clippy))] #![deny(missing_docs)] +#![deny(warnings)] // We internally use the deprecated BindgenOptions all over the place. Once we // remove its `pub` declaration, we can un-deprecate it and remove this pragma. |