Auto merge of #13433 - servo:jdm-patch-3, r=Ms2ger

Avoid huge numbers of warnings for atom_macro.

This avoids the perma-Travis failure from exceeding the log size due to the number of warnings from this module. I am filing a separate PR to fix the code generation to avoid the warning.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13433)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-09-26 13:37:47 -05:00 committed by GitHub
commit 22ba0e16e0

View file

@ -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;