Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichton

This was particularly helpful in the time just after OIBIT's
implementation to make sure things that were supposed to be Copy
continued to be, but it's now creates a lot of noise for types that
intentionally don't want to be Copy.

r? @alexcrichton
This commit is contained in:
Manish Goregaokar 2015-02-06 05:38:08 +05:30
commit 67b51291f0
28 changed files with 2 additions and 61 deletions

View file

@ -12,7 +12,6 @@
#![allow(unused_variables)]
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![allow(missing_copy_implementations)]
#![deny(dead_code)]
#![feature(core)]

View file

@ -12,7 +12,6 @@
// injected intrinsics by the compiler.
#![deny(missing_docs)]
#![allow(dead_code)]
#![allow(missing_copy_implementations)]
//! Some garbage docs for the crate here
#![doc="More garbage"]

View file

@ -10,7 +10,7 @@
// compile-flags: --crate-type lib
#![deny(missing_debug_implementations)]
#![allow(unused, missing_copy_implementations)]
#![allow(unused)]
use std::fmt;