File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,7 @@ pub enum EHAction {
49
49
Terminate ,
50
50
}
51
51
52
- pub const USING_SJLJ_EXCEPTIONS : bool =
53
- cfg ! ( all( target_os = "ios" , target_arch = "arm" ) ) ;
52
+ pub const USING_SJLJ_EXCEPTIONS : bool = cfg ! ( all( target_os = "ios" , target_arch = "arm" ) ) ;
54
53
55
54
pub unsafe fn find_eh_action ( lsda : * const u8 , context : & EHContext < ' _ > ) -> Result < EHAction , ( ) > {
56
55
if lsda. is_null ( ) {
Original file line number Diff line number Diff line change @@ -129,8 +129,6 @@ pub mod illumos;
129
129
pub mod ios;
130
130
#[ cfg( target_os = "l4re" ) ]
131
131
pub mod l4re;
132
- #[ cfg( target_os = "watchos" ) ]
133
- pub mod watchos;
134
132
#[ cfg( target_os = "macos" ) ]
135
133
pub mod macos;
136
134
#[ cfg( target_os = "netbsd" ) ]
@@ -141,11 +139,12 @@ pub mod openbsd;
141
139
pub mod redox;
142
140
#[ cfg( target_os = "solaris" ) ]
143
141
pub mod solaris;
144
-
145
142
#[ cfg( target_os = "solid_asp3" ) ]
146
143
pub mod solid;
147
144
#[ cfg( target_os = "vxworks" ) ]
148
145
pub mod vxworks;
146
+ #[ cfg( target_os = "watchos" ) ]
147
+ pub mod watchos;
149
148
150
149
#[ cfg( any( unix, target_os = "wasi" , doc) ) ]
151
150
mod fd;
You can’t perform that action at this time.
0 commit comments