Auto merge of #11206 - mbrubeck:warnings, r=nox

Fix unused item warning on 32-bit platforms

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11206)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-16 11:57:50 -07:00
commit 3a28aad349

View file

@ -72,6 +72,7 @@ pub type GlyphId = u32;
// TODO: make this more type-safe.
const FLAG_CHAR_IS_SPACE: u32 = 0x40000000;
#[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
const FLAG_CHAR_IS_SPACE_SHIFT: u32 = 30;
const FLAG_IS_SIMPLE_GLYPH: u32 = 0x80000000;