diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2019-02-09 15:53:12 +0900 |
|---|---|---|
| committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2019-02-09 15:53:12 +0900 |
| commit | c0f93a6ea35c41859c21da7d90fb142fa34a2df4 (patch) | |
| tree | 8dc9039ace091ef3011957e64057a7a8a910ef24 /src/bin | |
| parent | e28fae99747af538a30452413692a015da93b490 (diff) | |
cargo +nightly fix --edition-idioms
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/main.rs b/src/bin/main.rs index 53e95e8b5b6..b357eed34cf 100644 --- a/src/bin/main.rs +++ b/src/bin/main.rs @@ -8,11 +8,11 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -extern crate env_logger; +use env_logger; #[macro_use] extern crate failure; -extern crate getopts; -extern crate rustfmt_nightly as rustfmt; + +use rustfmt_nightly as rustfmt; use std::env; use std::fs::File; @@ -296,7 +296,7 @@ fn format( Ok(exit_code) } -fn format_and_emit_report<T: Write>(session: &mut Session<T>, input: Input) { +fn format_and_emit_report<T: Write>(session: &mut Session<'_, T>, input: Input) { match session.format(input) { Ok(report) => { if report.has_warnings() { |
