File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
compiler/rustc_index/src/bit_set Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -350,24 +350,24 @@ fn sparse_matrix_operations() {
350350 assert ! ( matrix. row( 0 ) . is_none( ) ) ;
351351 }
352352
353- // SparseBitMatrix::subtract_row
354- {
353+ // SparseBitMatrix::subtract_row
354+ {
355355 let mut matrix = matrix. clone ( ) ;
356356 assert ! ( !matrix. subtract_row( 3 , & disjoint) ) ;
357357 assert ! ( matrix. subtract_row( 3 , & subset) ) ;
358358 assert ! ( matrix. subtract_row( 3 , & superset) ) ;
359359 matrix. intersect_row ( 0 , & disjoint) ;
360360 assert ! ( matrix. row( 0 ) . is_none( ) ) ;
361- }
361+ }
362362
363- // SparseBitMatrix::union_row
364- {
363+ // SparseBitMatrix::union_row
364+ {
365365 let mut matrix = matrix. clone ( ) ;
366366 assert ! ( !matrix. union_row( 3 , & subset) ) ;
367367 assert ! ( matrix. union_row( 3 , & disjoint) ) ;
368368 matrix. union_row ( 0 , & disjoint) ;
369369 assert ! ( matrix. row( 0 ) . is_some( ) ) ;
370- }
370+ }
371371}
372372
373373/// Merge dense hybrid set into empty sparse hybrid set.
You can’t perform that action at this time.
0 commit comments