Removing some unused imports, cleanup

This commit is contained in:
Brandon Fish
2019-01-18 18:36:28 -06:00
parent 62d06043b2
commit 7fc892be07
7 changed files with 8 additions and 19 deletions

View File

@ -10,7 +10,7 @@ pub extern "C" fn ___cxa_allocate_exception(size: u32, instance: &mut Instance)
/// emscripten: ___cxa_throw
/// TODO: We don't have support for exceptions yet
pub extern "C" fn ___cxa_throw(ptr: u32, ty: u32, destructor: u32, instance: &mut Instance) {
pub extern "C" fn ___cxa_throw(_ptr: u32, ty: u32, destructor: u32, instance: &mut Instance) {
debug!("emscripten::___cxa_throw");
_abort();
}