diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-01-31 16:59:45 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-01-31 17:00:27 +0100 |
commit | cace4fc6eb5a2f488cd221f5cd961d0555c008d4 (patch) | |
tree | e77ca6c058e618374208eddf5f81a38fddbf5768 /ports/geckolib/lib.rs | |
parent | 3e3e05c99d51d7c1d63ecd9c51381ddf2cc6c461 (diff) | |
download | servo-cace4fc6eb5a2f488cd221f5cd961d0555c008d4.tar.gz servo-cace4fc6eb5a2f488cd221f5cd961d0555c008d4.zip |
Remove #![deny(warnings)]
We already have https://github.com/servo/servo/pull/19612
to deny warnings at the time of landing into master.
But it’s not useful to break the build when later compiler
with a more recent Rust version that has introduced new warnings:
https://bugzilla.mozilla.org/show_bug.cgi?id=1434619
Diffstat (limited to 'ports/geckolib/lib.rs')
-rw-r--r-- | ports/geckolib/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ports/geckolib/lib.rs b/ports/geckolib/lib.rs index ca57307c245..15c42509a81 100644 --- a/ports/geckolib/lib.rs +++ b/ports/geckolib/lib.rs @@ -2,7 +2,6 @@ * 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(warnings)] extern crate cssparser; extern crate env_logger; |