Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove #![deny(warnings)] #19914

Merged
merged 1 commit into from Jan 31, 2018
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Remove #![deny(warnings)]

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
commit cace4fc6eb5a2f488cd221f5cd961d0555c008d4
@@ -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
@@ -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;
@@ -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;
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.