Remove completed FIXME.

https://github.com/rust-lang/rust/issues/30530
This commit is contained in:
Corey Farwell 2016-11-24 16:26:21 -05:00
parent ddf011d773
commit e1269ff688

View File

@ -153,7 +153,7 @@ pub fn take_hook() -> Box<Fn(&PanicInfo) + 'static + Sync + Send> {
match hook {
Hook::Default => Box::new(default_hook),
Hook::Custom(ptr) => {Box::from_raw(ptr)} // FIXME #30530
Hook::Custom(ptr) => Box::from_raw(ptr),
}
}
}