From 587250ba4eb4a41010f787c5048103507c8dbf78 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Mon, 26 Sep 2016 09:35:26 -0400 Subject: [PATCH] Avoid huge numbers of warnings for atom_macro. --- components/style/gecko_string_cache/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/gecko_string_cache/mod.rs b/components/style/gecko_string_cache/mod.rs index 0e7b250acdb..0bcd58f9bc6 100644 --- a/components/style/gecko_string_cache/mod.rs +++ b/components/style/gecko_string_cache/mod.rs @@ -22,7 +22,7 @@ use std::ops::Deref; use std::slice; #[macro_use] -#[allow(improper_ctypes)] +#[allow(improper_ctypes, safe_extern_statics)] pub mod atom_macro; #[macro_use] pub mod namespace;