File tree 1 file changed +4
-4
lines changed
library/std/src/sys/unsupported
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ pub struct StdioPipes {
27
27
pub stderr : Option < AnonPipe > ,
28
28
}
29
29
30
- // TODO : This should be a unit struct, so we can always construct it
30
+ // FIXME : This should be a unit struct, so we can always construct it
31
31
// The value here should be never used, since we cannot spawn processes.
32
32
pub enum Stdio {
33
33
Inherit ,
@@ -91,23 +91,23 @@ impl From<AnonPipe> for Stdio {
91
91
92
92
impl From < io:: Stdout > for Stdio {
93
93
fn from ( _: io:: Stdout ) -> Stdio {
94
- // This is wrong.
94
+ // FIXME: This is wrong.
95
95
// Instead, the Stdio we have here should be a unit struct.
96
96
panic ! ( "unsupported" )
97
97
}
98
98
}
99
99
100
100
impl From < io:: Stderr > for Stdio {
101
101
fn from ( _: io:: Stderr ) -> Stdio {
102
- // This is wrong.
102
+ // FIXME: This is wrong.
103
103
// Instead, the Stdio we have here should be a unit struct.
104
104
panic ! ( "unsupported" )
105
105
}
106
106
}
107
107
108
108
impl From < File > for Stdio {
109
109
fn from ( _file : File ) -> Stdio {
110
- // This is wrong.
110
+ // FIXME: This is wrong.
111
111
// Instead, the Stdio we have here should be a unit struct.
112
112
panic ! ( "unsupported" )
113
113
}
You can’t perform that action at this time.
0 commit comments