Skip to content

Commit 434d59a

Browse files
committed
ignore the point where the outlives requirement was added
1 parent 964e069 commit 434d59a

File tree

6 files changed

+122
-409
lines changed

6 files changed

+122
-409
lines changed

src/librustc_data_structures/bitvec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ impl<R: Idx, C: Idx> SparseBitMatrix<R, C> {
326326
}
327327

328328
/// True if `sub` is a subset of `sup`
329-
pub fn subset(&self, sub: R, sup: R) -> bool {
329+
pub fn is_subset(&self, sub: R, sup: R) -> bool {
330330
sub == sup || {
331331
let bit_set_sub = &self.vector[sub];
332332
let bit_set_sup = &self.vector[sup];

src/librustc_mir/borrow_check/nll/region_infer/dfs.rs

Lines changed: 0 additions & 265 deletions
This file was deleted.

0 commit comments

Comments
 (0)