Skip to content

Commit

Permalink
Allow missing_copy_implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
mttr committed Jan 8, 2015
1 parent dc72119 commit a3fc3a1
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/canvas/lib.rs
Expand Up @@ -4,6 +4,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

extern crate azure;
extern crate geom;
Expand Down
1 change: 1 addition & 0 deletions components/compositing/lib.rs
Expand Up @@ -6,6 +6,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

#[phase(plugin, link)]
extern crate log;
Expand Down
1 change: 1 addition & 0 deletions components/devtools/lib.rs
Expand Up @@ -6,6 +6,7 @@
#![crate_type = "rlib"]

#![allow(non_snake_case)]
#![allow(missing_copy_implementations)]

#![feature(phase)]

Expand Down
1 change: 1 addition & 0 deletions components/devtools_traits/lib.rs
Expand Up @@ -6,6 +6,7 @@
#![crate_type = "rlib"]

#![allow(non_snake_case)]
#![allow(missing_copy_implementations)]
#![feature(globs)]

extern crate "msg" as servo_msg;
Expand Down
1 change: 1 addition & 0 deletions components/gfx/lib.rs
Expand Up @@ -6,6 +6,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

#![feature(phase)]
#[phase(plugin, link)]
Expand Down
1 change: 1 addition & 0 deletions components/layout/lib.rs
Expand Up @@ -7,6 +7,7 @@
#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(unrooted_must_root)]
#![allow(missing_copy_implementations)]

#[phase(plugin, link)]
extern crate log;
Expand Down
1 change: 1 addition & 0 deletions components/layout_traits/lib.rs
Expand Up @@ -4,6 +4,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

extern crate gfx;
extern crate script_traits;
Expand Down
1 change: 1 addition & 0 deletions components/msg/lib.rs
Expand Up @@ -4,6 +4,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

extern crate azure;
extern crate geom;
Expand Down
1 change: 1 addition & 0 deletions components/net/lib.rs
Expand Up @@ -6,6 +6,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

extern crate collections;
extern crate geom;
Expand Down
1 change: 1 addition & 0 deletions components/plugins/lib.rs
Expand Up @@ -16,6 +16,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

#[phase(plugin,link)]
extern crate syntax;
Expand Down
1 change: 1 addition & 0 deletions components/script/lib.rs
Expand Up @@ -7,6 +7,7 @@
#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(non_snake_case)]
#![allow(missing_copy_implementations)]

#![doc="The script crate contains all matters DOM."]

Expand Down
1 change: 1 addition & 0 deletions components/script_traits/lib.rs
Expand Up @@ -4,6 +4,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

extern crate devtools_traits;
extern crate geom;
Expand Down
1 change: 1 addition & 0 deletions components/servo/lib.rs
Expand Up @@ -6,6 +6,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

#[phase(plugin, link)]
extern crate log;
Expand Down
1 change: 1 addition & 0 deletions components/style/lib.rs
Expand Up @@ -6,6 +6,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

#![feature(phase)]
#[phase(plugin, link)] extern crate log;
Expand Down
1 change: 1 addition & 0 deletions components/util/lib.rs
Expand Up @@ -6,6 +6,7 @@

#![deny(unused_imports)]
#![deny(unused_variables)]
#![allow(missing_copy_implementations)]

#![feature(phase)]
#[phase(plugin, link)]
Expand Down

0 comments on commit a3fc3a1

Please sign in to comment.