Commit 64e426e 1 parent eac01f1 commit 64e426e Copy full SHA for 64e426e
File tree 1 file changed +3
-3
lines changed
src/libstd/sys/windows/ext
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,21 +75,21 @@ impl AsRawHandle for fs::File {
75
75
#[ stable( feature = "asraw_stdio" , since = "1.21.0" ) ]
76
76
impl AsRawHandle for io:: Stdin {
77
77
fn as_raw_handle ( & self ) -> RawHandle {
78
- unsafe { c:: GetStdHandle ( c:: STD_INPUT_HANDLE ) } as RawHandle
78
+ unsafe { c:: GetStdHandle ( c:: STD_INPUT_HANDLE ) as RawHandle }
79
79
}
80
80
}
81
81
82
82
#[ stable( feature = "asraw_stdio" , since = "1.21.0" ) ]
83
83
impl AsRawHandle for io:: Stdout {
84
84
fn as_raw_handle ( & self ) -> RawHandle {
85
- unsafe { c:: GetStdHandle ( c:: STD_OUTPUT_HANDLE ) } as RawHandle
85
+ unsafe { c:: GetStdHandle ( c:: STD_OUTPUT_HANDLE ) as RawHandle }
86
86
}
87
87
}
88
88
89
89
#[ stable( feature = "asraw_stdio" , since = "1.21.0" ) ]
90
90
impl AsRawHandle for io:: Stderr {
91
91
fn as_raw_handle ( & self ) -> RawHandle {
92
- unsafe { c:: GetStdHandle ( c:: STD_ERROR_HANDLE ) } as RawHandle
92
+ unsafe { c:: GetStdHandle ( c:: STD_ERROR_HANDLE ) as RawHandle }
93
93
}
94
94
}
95
95
You can’t perform that action at this time.
0 commit comments