We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a3f0f commit d2d205dCopy full SHA for d2d205d
library/panic_unwind/src/emcc.rs
@@ -111,11 +111,11 @@ extern "C" fn exception_cleanup(ptr: *mut libc::c_void) -> *mut libc::c_void {
111
// Wasm error handling would use __gxx_personality_wasm0.
112
#[lang = "eh_personality"]
113
unsafe extern "C" fn rust_eh_personality(
114
- version: c_int,
115
- actions: uw::_Unwind_Action,
116
- exception_class: uw::_Unwind_Exception_Class,
117
- exception_object: *mut uw::_Unwind_Exception,
118
- context: *mut uw::_Unwind_Context,
+ _version: c_int,
+ _actions: uw::_Unwind_Action,
+ _exception_class: uw::_Unwind_Exception_Class,
+ _exception_object: *mut uw::_Unwind_Exception,
+ _context: *mut uw::_Unwind_Context,
119
) -> uw::_Unwind_Reason_Code {
120
core::intrinsics::abort()
121
}
0 commit comments