Regularize the names of #include-guards.
[oota-llvm.git] / include / Support / Tree.h
index 9e8d5ae7efa7ee109e70aaa4da511ee8124203f5..9979caaf312d84317a12e0e996f980c90a2bc5f5 100644 (file)
@@ -5,11 +5,13 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef LLVM_SUPPORT_TREE_H
-#define LLVM_SUPPORT_TREE_H
+#ifndef SUPPORT_TREE_H
+#define SUPPORT_TREE_H
 
 #include <vector>
 
+#include <assert.h>
+
 template<class ConcreteTreeNode, class Payload>
 class Tree {
   std::vector<ConcreteTreeNode*> Children;        // This nodes children, if any