Skip to content

Commit c735727

Browse files
committed
Formatting
1 parent 8d9e4f9 commit c735727

File tree

1 file changed

+6
-6
lines changed
  • compiler/rustc_index/src/bit_set

1 file changed

+6
-6
lines changed

compiler/rustc_index/src/bit_set/tests.rs

+6-6
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)