File tree 1 file changed +4
-2
lines changed
src/librustc_mir/borrow_check
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use rustc::mir::{Terminator, TerminatorKind};
18
18
use rustc:: ty:: query:: Providers ;
19
19
use rustc:: ty:: { self , TyCtxt } ;
20
20
21
- use rustc_errors:: { Applicability , Diagnostic , DiagnosticBuilder , Level } ;
21
+ use rustc_errors:: { Applicability , Diagnostic , DiagnosticBuilder } ;
22
22
use rustc_data_structures:: bit_set:: BitSet ;
23
23
use rustc_data_structures:: fx:: { FxHashMap , FxHashSet } ;
24
24
use rustc_data_structures:: graph:: dominators:: Dominators ;
@@ -407,7 +407,8 @@ fn do_mir_borrowck<'a, 'tcx>(
407
407
result
408
408
}
409
409
410
- fn downgrade_if_error ( diag : & mut Diagnostic ) {
410
+ fn downgrade_if_error ( _diag : & mut Diagnostic ) {
411
+ /*
411
412
if diag.is_error() {
412
413
diag.level = Level::Warning;
413
414
diag.warn(
@@ -420,6 +421,7 @@ fn downgrade_if_error(diag: &mut Diagnostic) {
420
421
"for more information, try `rustc --explain E0729`"
421
422
);
422
423
}
424
+ */
423
425
}
424
426
425
427
crate struct MirBorrowckCtxt < ' cx , ' tcx > {
You can’t perform that action at this time.
0 commit comments