Skip to content

Commit

Permalink
Remove #![deny(warnings)]
Browse files Browse the repository at this point in the history
We already have #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
  • Loading branch information
SimonSapin committed Jan 31, 2018
1 parent 3e3e05c commit cace4fc
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion components/style/lib.rs
Expand Up @@ -23,7 +23,6 @@
//! [cssparser]: ../cssparser/index.html
//! [selectors]: ../selectors/index.html

#![deny(warnings)]
#![deny(missing_docs)]

#![recursion_limit = "500"] // For define_css_keyword_enum! in -moz-appearance
Expand Down
1 change: 0 additions & 1 deletion ports/geckolib/lib.rs
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion support/gecko/nsstring/src/lib.rs
Expand Up @@ -113,7 +113,6 @@
//! which invoke their member's destructors through C++ code.

#![allow(non_camel_case_types)]
#![deny(warnings)]

#[macro_use]
extern crate bitflags;
Expand Down

0 comments on commit cace4fc

Please sign in to comment.