From e73c65fd1ce90a85e0333c662a12835427088e75 Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Sat, 13 Feb 2016 02:10:47 -0500 Subject: [PATCH] Silence warning on raw_pointer_derive --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9cf4bb344cd95..b37f42d473319 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ #![feature(unsafe_no_drop_flag)] #![feature(const_fn)] -#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, improper_ctypes, raw_pointer_derive)] +#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, improper_ctypes)] #[macro_use] extern crate heapsize;