diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-03-28 02:23:20 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-03-28 02:23:20 -0700 |
| commit | cbce6bfbdb140561add2ff258b305e7c7f2ad5c6 (patch) | |
| tree | 1f30cca11906cea62f06810e0e8ad6d5f787633b /src/libstd/sys | |
| parent | 0c9de8140b8abdd2d0a83db93746c58e8bc0da2c (diff) | |
| download | rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.tar.gz rust-cbce6bfbdb140561add2ff258b305e7c7f2ad5c6.zip | |
cleanup: Remove unused braces in use statements
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/windows/tty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/tty.rs b/src/libstd/sys/windows/tty.rs index 52f4cce4aa3..6b999f466cf 100644 --- a/src/libstd/sys/windows/tty.rs +++ b/src/libstd/sys/windows/tty.rs @@ -42,7 +42,7 @@ use super::c::{ENABLE_INSERT_MODE, ENABLE_LINE_INPUT}; use super::c::{ENABLE_PROCESSED_INPUT, ENABLE_QUICK_EDIT_MODE}; use super::c::CONSOLE_SCREEN_BUFFER_INFO; use super::c::{ReadConsoleW, WriteConsoleW, GetConsoleMode, SetConsoleMode}; -use super::c::{GetConsoleScreenBufferInfo}; +use super::c::GetConsoleScreenBufferInfo; fn invalid_encoding() -> IoError { IoError { |
