Auto merge of #19654 - emilio:geckolib-nightly, r=jdm

style: Allow building stylo with rust nightly.

See individual commits for details.

<!-- 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/19654)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2018-01-03 12:01:42 -06:00 committed by GitHub
commit f71fb8bddc
2 changed files with 1 additions and 2 deletions

View file

@ -1787,7 +1787,7 @@ impl<'le> Eq for GeckoElement<'le> {}
impl<'le> Hash for GeckoElement<'le> {
#[inline]
fn hash<H: Hasher>(&self, state: &mut H) {
(self.0 as *const _).hash(state);
(self.0 as *const RawGeckoElement).hash(state);
}
}