File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- 2b96ddca1272960623e41829439df8dae82d20af
1
+ e7f4317ea0e891296163414c6f681ccec976abc3
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ mod vector_clock;
9
9
pub mod weak_memory;
10
10
11
11
// Import either the real genmc adapter or a dummy module.
12
- cfg_match ! {
12
+ cfg_select ! {
13
13
feature = "genmc" => {
14
14
mod genmc;
15
15
pub use self :: genmc:: { GenmcCtx , GenmcConfig } ;
Original file line number Diff line number Diff line change 1
1
#![ feature( rustc_private) ]
2
- #![ feature( cfg_match ) ]
2
+ #![ feature( cfg_select ) ]
3
3
#![ feature( float_gamma) ]
4
4
#![ feature( float_erf) ]
5
5
#![ feature( map_try_insert) ]
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ impl UnixFileDescription for FileHandle {
90
90
op : FlockOp ,
91
91
) -> InterpResult < ' tcx , io:: Result < ( ) > > {
92
92
assert ! ( communicate_allowed, "isolation should have prevented even opening a file" ) ;
93
- cfg_match ! {
93
+ cfg_select ! {
94
94
all( target_family = "unix" , not( target_os = "solaris" ) ) => {
95
95
use std:: os:: fd:: AsRawFd ;
96
96
You can’t perform that action at this time.
0 commit comments