We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 703a6dd commit 8dffd72Copy full SHA for 8dffd72
1 file changed
src/machine/machine_state_impl.rs
@@ -557,10 +557,10 @@ impl MachineState {
557
}
558
559
pub fn compare_term_test(&self, h1: HeapCellValue, h2: HeapCellValue) -> Option<Ordering> {
560
- // all derefs downstack from this function are heap bound so
561
- // dereference stack vars pointing into the heap while possible
562
- let h1 = self.store(h1);
563
- let h2 = self.store(h2);
+ // all derefs downstack from this function are heap bound so
+ // dereference stack vars pointing into the heap while possible
+ let h1 = self.store(h1);
+ let h2 = self.store(h2);
564
565
for term_pair in ParallelHeapIter::from(self, h1, h2) {
566
match term_pair {
0 commit comments