Browse Source

[2218] Untabify

Mukund Sivaraman 12 years ago
parent
commit
7e2522e417
1 changed files with 3 additions and 3 deletions
  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_)
         last_comparison_(other.last_comparison_)
     {
     {
         for (size_t i = 0; i < level_count_; i++) {
         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) {
         } else if (node->getDown() != NULL) {
             node = node->getDown();
             node = node->getDown();
         } else {
         } else {
-	    break;
-	}
+            break;
+        }
     }
     }
 
 
     return (node);
     return (node);