File tree 1 file changed +4
-4
lines changed
compiler/rustc_driver_impl/src
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -207,17 +207,17 @@ pub fn diagnostics_registry() -> Registry {
207
207
}
208
208
209
209
/// This is the primary entry point for rustc.
210
- pub struct RunCompiler <' a, ' b > {
210
+ pub struct RunCompiler <' a> {
211
211
at_args: & ' a [ String ] ,
212
- callbacks: & ' b mut ( dyn Callbacks + Send ) ,
212
+ callbacks: & ' a mut ( dyn Callbacks + Send ) ,
213
213
file_loader: Option <Box <dyn FileLoader + Send + Sync >>,
214
214
make_codegen_backend:
215
215
Option <Box <dyn FnOnce ( & config:: Options ) -> Box <dyn CodegenBackend > + Send >>,
216
216
using_internal_features: Arc <std:: sync:: atomic:: AtomicBool >,
217
217
}
218
218
219
- impl <' a, ' b > RunCompiler <' a, ' b > {
220
- pub fn new( at_args: & ' a [ String ] , callbacks: & ' b mut ( dyn Callbacks + Send ) ) -> Self {
219
+ impl <' a> RunCompiler <' a> {
220
+ pub fn new( at_args: & ' a [ String ] , callbacks: & ' a mut ( dyn Callbacks + Send ) ) -> Self {
221
221
Self {
222
222
at_args,
223
223
callbacks,
You can’t perform that action at this time.
0 commit comments