Parcourir la source

[2218] Untabify

Mukund Sivaraman il y a 12 ans
Parent
commit
7e2522e417
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      src/lib/datasrc/memory/domaintree.h

+ 3 - 3
src/lib/datasrc/memory/domaintree.h

@@ -706,7 +706,7 @@ public:
         last_comparison_(other.last_comparison_)
     {
         for (size_t i = 0; i < level_count_; i++) {
-	    nodes_[i] = other.nodes_[i];
+            nodes_[i] = other.nodes_[i];
         }
     }
 
@@ -1766,8 +1766,8 @@ DomainTree<T>::largestNode() const {
         } else if (node->getDown() != NULL) {
             node = node->getDown();
         } else {
-	    break;
-	}
+            break;
+        }
     }
 
     return (node);