diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-02-25 11:42:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-25 11:42:25 +0100 |
| commit | 2a69aec94791d261f47adebea4264671e45bb2d6 (patch) | |
| tree | aa28eecfb5124ba60a3d06ab62ff0466f89cd8d3 /src/librustc_codegen_ssa/back/command.rs | |
| parent | 77e2e84191fba8dd7a2d633f055ca31786d8f8ab (diff) | |
| parent | 1d34f2c22879886fcd452da096317861f8a0c9e6 (diff) | |
| download | rust-2a69aec94791d261f47adebea4264671e45bb2d6.tar.gz rust-2a69aec94791d261f47adebea4264671e45bb2d6.zip | |
Rollup merge of #58720 - Centril:deny-elided_lifetimes_in_paths-librustc_codegen_ssa, r=oli-obk
librustc_codegen_ssa: #![deny(elided_lifetimes_in_paths)] As part of the Rust 2018 transition, remove `#![allow(elided_lifetimes_in_paths)]` from `librustc_codegen_ssa`. r? @oli-obk
Diffstat (limited to 'src/librustc_codegen_ssa/back/command.rs')
| -rw-r--r-- | src/librustc_codegen_ssa/back/command.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_ssa/back/command.rs b/src/librustc_codegen_ssa/back/command.rs index bc484ace584..78570cce57d 100644 --- a/src/librustc_codegen_ssa/back/command.rs +++ b/src/librustc_codegen_ssa/back/command.rs @@ -159,7 +159,7 @@ impl Command { } impl fmt::Debug for Command { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { self.command().fmt(f) } } |
