diff options
| author | Corey Farwell <coreyf@rwell.org> | 2016-11-24 16:26:21 -0500 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2016-11-24 16:26:21 -0500 |
| commit | e1269ff68804e4ce16102cf60817f7219f6891b1 (patch) | |
| tree | 3cbe8dd6f3aaa115127d342fc84422c0da1ed72e | |
| parent | ddf011d7730594f4db36b01858b8c6733b07c084 (diff) | |
| download | rust-e1269ff68804e4ce16102cf60817f7219f6891b1.tar.gz rust-e1269ff68804e4ce16102cf60817f7219f6891b1.zip | |
Remove completed FIXME.
https://github.com/rust-lang/rust/issues/30530
| -rw-r--r-- | src/libstd/panicking.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/panicking.rs b/src/libstd/panicking.rs index 1f5b3437b61..04050a5edc4 100644 --- a/src/libstd/panicking.rs +++ b/src/libstd/panicking.rs @@ -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), } } } |
