File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 40
40
#![ warn( missing_docs) ]
41
41
#![ warn( rust_2018_idioms) ]
42
42
#![ cfg_attr(
43
- all( target_vendor = "fortanix " , target_env = "sgx " ) ,
43
+ all( target_env = "sgx " , target_vendor = "fortanix " ) ,
44
44
feature( sgx_platform)
45
45
) ]
46
46
@@ -56,11 +56,15 @@ mod thread_parker;
56
56
#[ path = "thread_parker/windows/mod.rs" ]
57
57
mod thread_parker;
58
58
59
- #[ cfg( all( target_vendor = "fortanix " , target_env = "sgx " ) ) ]
59
+ #[ cfg( all( target_env = "sgx " , target_vendor = "fortanix " ) ) ]
60
60
#[ path = "thread_parker/sgx.rs" ]
61
61
mod thread_parker;
62
62
63
- #[ cfg( not( any( windows, unix, all( target_vendor = "fortanix" , target_env = "sgx" ) ) ) ) ]
63
+ #[ cfg( not( any(
64
+ windows,
65
+ unix,
66
+ all( target_env = "sgx" , target_vendor = "fortanix" )
67
+ ) ) ) ]
64
68
#[ path = "thread_parker/generic.rs" ]
65
69
mod thread_parker;
66
70
You can’t perform that action at this time.
0 commit comments