Remove unneeded semicolon

This commit is contained in:
Lachlan Sneff
2019-04-11 12:13:36 -07:00
parent c898439817
commit 60ac7a5b49

View File

@ -440,7 +440,7 @@ impl ProtectedCaller for LLVMProtectedCaller {
impl UserTrapper for Placeholder {
unsafe fn do_early_trap(&self, data: Box<dyn Any>) -> ! {
throw_any(Box::leak(data));
throw_any(Box::leak(data))
}
}