File tree 1 file changed +2
-3
lines changed 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,10 @@ use cast;
21
21
use ops:: Drop ;
22
22
use ptr:: RawPtr ;
23
23
24
- #[ cfg( windows) ] // mingw-w32 doesn't like thread_local things
25
24
#[ cfg( target_os = "android" ) ] // see #10686
26
25
pub use self :: native:: * ;
27
26
28
- #[ cfg( not( windows ) , not ( target_os = "android" ) ) ]
27
+ #[ cfg( not( target_os = "android" ) ) ]
29
28
pub use self :: compiled:: * ;
30
29
31
30
/// Encapsulates a borrowed value. When this value goes out of scope, the
@@ -76,7 +75,7 @@ pub unsafe fn borrow<T>() -> Borrowed<T> {
76
75
/// implemented using LLVM's thread_local attribute which isn't necessarily
77
76
/// working on all platforms. This implementation is faster, however, so we use
78
77
/// it wherever possible.
79
- #[ cfg( not( windows ) , not ( target_os = "android" ) ) ]
78
+ #[ cfg( not( target_os = "android" ) ) ]
80
79
pub mod compiled {
81
80
use cast;
82
81
use option:: { Option , Some , None } ;
You can’t perform that action at this time.
0 commit comments