File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
compiler/rustc_driver_impl/src Expand file tree Collapse file tree 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 {
207207}
208208
209209/// This is the primary entry point for rustc.
210- pub struct RunCompiler <' a, ' b > {
210+ pub struct RunCompiler <' a> {
211211 at_args: & ' a [ String ] ,
212- callbacks: & ' b mut ( dyn Callbacks + Send ) ,
212+ callbacks: & ' a mut ( dyn Callbacks + Send ) ,
213213 file_loader: Option <Box <dyn FileLoader + Send + Sync >>,
214214 make_codegen_backend:
215215 Option <Box <dyn FnOnce ( & config:: Options ) -> Box <dyn CodegenBackend > + Send >>,
216216 using_internal_features: Arc <std:: sync:: atomic:: AtomicBool >,
217217}
218218
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 {
221221 Self {
222222 at_args,
223223 callbacks,
You can’t perform that action at this time.
0 commit comments