| author | Nicolas Silva <nsilva@mozilla.com> |
| Fri, 10 Jan 2020 10:59:46 +0000 | |
| changeset 509697 | 585292f2cc588b85bf502f5763d4e840c402e18e |
| parent 509696 | 8833e27850ad7831b9b274a7222fcc10c994592d |
| child 509698 | b4b88897ba09c7deb1c46aca6b9fbd3874899085 |
| push id | 37002 |
| push user | ccoroiu@mozilla.com |
| push date | Fri, 10 Jan 2020 21:49:10 +0000 |
| treeherder | mozilla-central@7fa78b1baf59 [default view] [failures only] |
| perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
| bugs | 1607697 |
| milestone | 74.0a1 |
| first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
| last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/gfx/wr/webrender_api/src/lib.rs +++ b/gfx/wr/webrender_api/src/lib.rs @@ -7,17 +7,18 @@ //! //! This separation allows Servo to parallelize compilation across `webrender` //! and other crates that depend on `webrender_api`. So in practice, we put //! things in this crate when Servo needs to use them. Firefox depends on the //! `webrender` crate directly, and so this distinction is not really relevant //! there. #![cfg_attr(feature = "nightly", feature(nonzero))] -#![cfg_attr(feature = "cargo-clippy", allow(clippy::float_cmp, clippy::too_many_arguments, clippy::unreadable_literal, clippy::new_without_default))] +#![cfg_attr(feature = "cargo-clippy", allow(clippy::float_cmp, clippy::too_many_arguments))] +#![cfg_attr(feature = "cargo-clippy", allow(clippy::unreadable_literal, clippy::new_without_default))] extern crate app_units; #[macro_use] extern crate bitflags; extern crate byteorder; #[cfg(feature = "nightly")] extern crate core; #[cfg(target_os = "macos")]