File tree 1 file changed +0
-8
lines changed
1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,6 @@ mod theme;
85
85
mod visit_ast;
86
86
mod visit_lib;
87
87
88
- struct Output {
89
- krate : clean:: Crate ,
90
- renderinfo : config:: RenderInfo ,
91
- renderopts : config:: RenderOptions ,
92
- }
93
-
94
88
pub fn main ( ) {
95
89
rustc_driver:: set_sigpipe_handler ( ) ;
96
90
rustc_driver:: install_ice_hook ( ) ;
@@ -521,15 +515,13 @@ fn main_options(options: config::Options) -> MainResult {
521
515
522
516
krate. version = crate_version;
523
517
524
- let out = Output { krate, renderinfo, renderopts } ;
525
518
526
519
if show_coverage {
527
520
// if we ran coverage, bail early, we don't need to also generate docs at this point
528
521
// (also we didn't load in any of the useful passes)
529
522
return Ok ( ( ) ) ;
530
523
}
531
524
532
- let Output { krate, renderinfo, renderopts } = out;
533
525
info ! ( "going to format" ) ;
534
526
let ( error_format, edition, debugging_options) = diag_opts;
535
527
let diag = core:: new_handler ( error_format, None , & debugging_options) ;
You can’t perform that action at this time.
0 commit comments