1
Fork 0

Lrc -> Rc

This commit is contained in:
klensy 2023-04-29 14:17:37 +03:00
parent 597c6514d1
commit 07266362c6
2 changed files with 13 additions and 12 deletions

View file

@ -41,7 +41,7 @@ impl ReverseSccGraph {
impl RegionInferenceContext<'_> {
/// Compute the reverse SCC-based constraint graph (lazily).
pub(super) fn compute_reverse_scc_graph(&mut self) {
if matches!(self.rev_scc_graph, Some(_)) {
if self.rev_scc_graph.is_some() {
return;
}