File tree 4 files changed +3
-157
lines changed
4 files changed +3
-157
lines changed Original file line number Diff line number Diff line change @@ -233,10 +233,6 @@ impl File {
233
233
pub fn set_permissions ( & self , _perm : FilePermissions ) -> io:: Result < ( ) > {
234
234
match self . 0 { }
235
235
}
236
-
237
- pub fn diverge ( & self ) -> ! {
238
- match self . 0 { }
239
- }
240
236
}
241
237
242
238
impl DirBuilder {
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ impl From<AnonPipe> for Stdio {
65
65
}
66
66
67
67
impl From < File > for Stdio {
68
- fn from ( file : File ) -> Stdio {
69
- file . diverge ( )
68
+ fn from ( _file : File ) -> Stdio {
69
+ panic ! ( "unsupported" )
70
70
}
71
71
}
72
72
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ pub mod ext;
38
38
pub mod path;
39
39
#[ path = "../unsupported/pipe.rs" ]
40
40
pub mod pipe;
41
+ #[ path = "../unsupported/process.rs" ]
41
42
pub mod process;
42
43
#[ path = "../unsupported/rwlock.rs" ]
43
44
pub mod rwlock;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments