File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -400,14 +400,18 @@ pub mod eabi {
400
400
#[ allow( non_camel_case_types, non_snake_case) ]
401
401
pub mod eabi {
402
402
pub use self :: EXCEPTION_DISPOSITION :: * ;
403
+ use core:: prelude:: * ;
403
404
use libunwind as uw;
404
405
use libc:: { c_void, c_int} ;
405
406
406
407
#[ repr( C ) ]
408
+ #[ allow( missing_copy_implementations) ]
407
409
pub struct EXCEPTION_RECORD ;
408
410
#[ repr( C ) ]
411
+ #[ allow( missing_copy_implementations) ]
409
412
pub struct CONTEXT ;
410
413
#[ repr( C ) ]
414
+ #[ allow( missing_copy_implementations) ]
411
415
pub struct DISPATCHER_CONTEXT ;
412
416
413
417
#[ repr( C ) ]
@@ -418,6 +422,8 @@ pub mod eabi {
418
422
ExceptionCollidedUnwind
419
423
}
420
424
425
+ impl Copy for EXCEPTION_DISPOSITION { }
426
+
421
427
type _Unwind_Personality_Fn =
422
428
extern "C" fn (
423
429
version : c_int ,
You can’t perform that action at this time.
0 commit comments