]> Repositorios git - scryer-prolog.git/commitdiff
replace tabs with spaces
authorMark Thom <[email protected]>
Tue, 21 Apr 2026 23:22:38 +0000 (16:22 -0700)
committerMark Thom <[email protected]>
Tue, 21 Apr 2026 23:22:38 +0000 (16:22 -0700)
src/machine/machine_state_impl.rs

index 80f6c61f305b6f66d620a76b0f6819e44ae53a28..390ad99d3529cadaef0aa604e448bce70a091b36 100644 (file)
@@ -557,10 +557,10 @@ impl MachineState {
     }
 
     pub fn compare_term_test(&self, h1: HeapCellValue, h2: HeapCellValue) -> Option<Ordering> {
-       // 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);
+        // 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);
 
         for term_pair in ParallelHeapIter::from(self, h1, h2) {
             match term_pair {