Skip to content

Commit

Permalink
Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Pialex99 committed Jan 6, 2023
1 parent d9b94e0 commit 35f6f7f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ struct UsedPredicateCollector {
impl UsedPredicateCollector {
fn new() -> Self {
UsedPredicateCollector {
used_predicates: FxHashSet::new(),
folded_predicates: FxHashSet::new(),
used_resource_predicates: FxHashSet::new(),
used_predicates: FxHashSet::default(),
folded_predicates: FxHashSet::default(),
used_resource_predicates: FxHashSet::default(),
}
}
}
Expand Down

0 comments on commit 35f6f7f

Please sign in to comment.