style: Specify the type of a pointer.

This avoids nightly warnings.
This commit is contained in:
Emilio Cobos Álvarez 2017-12-29 19:16:31 +01:00
parent 20a0d52598
commit 99dfc67d60
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -1776,7 +1776,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);
}
}