@@ -1361,7 +1361,7 @@ impl EmitterWriter {
13611361 let mut multilines = FxHashMap :: default ( ) ;
13621362
13631363 // Get the left-side margin to remove it
1364- let mut whitespace_margin = std :: usize:: MAX ;
1364+ let mut whitespace_margin = usize:: MAX ;
13651365 for line_idx in 0 ..annotated_file. lines . len ( ) {
13661366 let file = annotated_file. file . clone ( ) ;
13671367 let line = & annotated_file. lines [ line_idx] ;
@@ -1373,19 +1373,19 @@ impl EmitterWriter {
13731373 }
13741374 }
13751375 }
1376- if whitespace_margin == std :: usize:: MAX {
1376+ if whitespace_margin == usize:: MAX {
13771377 whitespace_margin = 0 ;
13781378 }
13791379
13801380 // Left-most column any visible span points at.
1381- let mut span_left_margin = std :: usize:: MAX ;
1381+ let mut span_left_margin = usize:: MAX ;
13821382 for line in & annotated_file. lines {
13831383 for ann in & line. annotations {
13841384 span_left_margin = min ( span_left_margin, ann. start_col ) ;
13851385 span_left_margin = min ( span_left_margin, ann. end_col ) ;
13861386 }
13871387 }
1388- if span_left_margin == std :: usize:: MAX {
1388+ if span_left_margin == usize:: MAX {
13891389 span_left_margin = 0 ;
13901390 }
13911391
@@ -1421,7 +1421,7 @@ impl EmitterWriter {
14211421 } else {
14221422 termize:: dimensions ( )
14231423 . map ( |( w, _) | w. saturating_sub ( code_offset) )
1424- . unwrap_or ( std :: usize:: MAX )
1424+ . unwrap_or ( usize:: MAX )
14251425 } ;
14261426
14271427 let margin = Margin :: new (
0 commit comments