style: Stop allowing unused_unsafe.

This commit is contained in:
Emilio Cobos Álvarez 2017-11-13 14:59:03 +01:00
parent fd68091491
commit f0d749a544
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
2 changed files with 1 additions and 12 deletions

View file

@ -590,9 +590,7 @@ impl PrevSiblingOrFreeCount {
}
unsafe fn as_free_count(&self) -> &AtomicUsize {
unsafe {
mem::transmute(&self.0)
}
mem::transmute(&self.0)
}
}