Change TODO to FIXME

This commit is contained in:
Tobias Bucher 2015-08-09 21:50:53 +02:00
parent 5309fbb6c9
commit 587a32b61b
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ impl<K, V> Node<K, V> {
#[inline]
pub fn as_slices_internal_mut<'b>(&'b mut self) -> MutNodeSlice<'b, K, V> {
// TODO: Bad: This relies on structure layout!
// FIXME(#27620): Bad: This relies on structure layout!
unsafe { mem::transmute(self.as_slices_internal()) }
}