From e1269ff68804e4ce16102cf60817f7219f6891b1 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Thu, 24 Nov 2016 16:26:21 -0500 Subject: [PATCH] Remove completed FIXME. https://github.com/rust-lang/rust/issues/30530 --- src/libstd/panicking.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/panicking.rs b/src/libstd/panicking.rs index 1f5b3437b6155..04050a5edc452 100644 --- a/src/libstd/panicking.rs +++ b/src/libstd/panicking.rs @@ -153,7 +153,7 @@ pub fn take_hook() -> Box { match hook { Hook::Default => Box::new(default_hook), - Hook::Custom(ptr) => {Box::from_raw(ptr)} // FIXME #30530 + Hook::Custom(ptr) => Box::from_raw(ptr), } } }