Remove #[allow(raw_pointer_derive)] attributes

The attributes are unused.

Fixes #8699.
This commit is contained in:
Brandon Fairchild 2015-11-27 14:32:57 -05:00
parent 3720e4d5ef
commit 341e66f66d
7 changed files with 1 additions and 10 deletions

View file

@ -46,7 +46,6 @@ use util::mem::HeapSizeOf;
/// The address of a node. Layout sends these back. They must be validated via
/// `from_untrusted_node_address` before they can be used, because we do not trust layout.
#[allow(raw_pointer_derive)]
#[derive(Copy, Clone, Debug)]
pub struct UntrustedNodeAddress(pub *const c_void);
unsafe impl Send for UntrustedNodeAddress {}