diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2021-06-01 11:52:44 +0200 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2021-06-08 19:24:17 +0200 |
| commit | 2bf839e87086d1d636b22a938845bd5c33a39ca1 (patch) | |
| tree | 3775ab01ae9a1187c487ac6c8a75299f8a779425 /compiler/rustc_interface/src | |
| parent | cf1f92a2ca29bd8ae183929fa44447c9d3bd6637 (diff) | |
| download | rust-2bf839e87086d1d636b22a938845bd5c33a39ca1.tar.gz rust-2bf839e87086d1d636b22a938845bd5c33a39ca1.zip | |
Don't require LintStore to live for 'a in configure_and_expand_inner
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/passes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs index 802d00faef9..62abc5e6964 100644 --- a/compiler/rustc_interface/src/passes.rs +++ b/compiler/rustc_interface/src/passes.rs @@ -271,7 +271,7 @@ fn pre_expansion_lint( fn configure_and_expand_inner<'a>( sess: &'a Session, - lint_store: &'a LintStore, + lint_store: &LintStore, mut krate: ast::Crate, crate_name: &str, resolver_arenas: &'a ResolverArenas<'a>, |
