File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,7 @@ pub enum EHAction {
4949 Terminate ,
5050}
5151
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" ) ) ;
5453
5554pub unsafe fn find_eh_action ( lsda : * const u8 , context : & EHContext < ' _ > ) -> Result < EHAction , ( ) > {
5655 if lsda. is_null ( ) {
Original file line number Diff line number Diff line change @@ -129,8 +129,6 @@ pub mod illumos;
129129pub mod ios;
130130#[ cfg( target_os = "l4re" ) ]
131131pub mod l4re;
132- #[ cfg( target_os = "watchos" ) ]
133- pub mod watchos;
134132#[ cfg( target_os = "macos" ) ]
135133pub mod macos;
136134#[ cfg( target_os = "netbsd" ) ]
@@ -141,11 +139,12 @@ pub mod openbsd;
141139pub mod redox;
142140#[ cfg( target_os = "solaris" ) ]
143141pub mod solaris;
144-
145142#[ cfg( target_os = "solid_asp3" ) ]
146143pub mod solid;
147144#[ cfg( target_os = "vxworks" ) ]
148145pub mod vxworks;
146+ #[ cfg( target_os = "watchos" ) ]
147+ pub mod watchos;
149148
150149#[ cfg( any( unix, target_os = "wasi" , doc) ) ]
151150mod fd;
You can’t perform that action at this time.
0 commit comments