Skip to content
Snippets Groups Projects
Commit 70976974 authored by Georges Racinet's avatar Georges Racinet :squid:
Browse files

rust: rename local variables in AncestorsIterator::next

It was confusing to have p1 and parents.1 ; (p1, p2) is clearer.

Differential Revision: https://phab.mercurial-scm.org/D5365
parent 59aed775
No related merge requests found
......@@ -126,7 +126,7 @@
}
Some(c) => *c,
};
let parents = self
let (p1, p2) = self
.graph
.parents(current)
.unwrap_or((NULL_REVISION, NULL_REVISION));
......@@ -130,7 +130,6 @@
.graph
.parents(current)
.unwrap_or((NULL_REVISION, NULL_REVISION));
let p1 = parents.0;
if p1 < self.stoprev || self.seen.contains(&p1) {
self.visit.pop();
} else {
......@@ -138,7 +137,7 @@
self.seen.insert(p1);
};
self.conditionally_push_rev(parents.1);
self.conditionally_push_rev(p2);
Some(current)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment