]> git.lizzy.rs Git - rust.git/commitdiff
Remove completed FIXME.
authorCorey Farwell <coreyf@rwell.org>
Thu, 24 Nov 2016 21:26:21 +0000 (16:26 -0500)
committerCorey Farwell <coreyf@rwell.org>
Thu, 24 Nov 2016 21:26:21 +0000 (16:26 -0500)
https://github.com/rust-lang/rust/issues/30530

src/libstd/panicking.rs

index 1f5b3437b615529e33be872ef99949d7329ae3e0..04050a5edc4523b94d89e2464737cb05cfa60f55 100644 (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),
         }
     }
 }