aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/Tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/ADT/Tree.h')
-rw-r--r--include/llvm/ADT/Tree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/ADT/Tree.h b/include/llvm/ADT/Tree.h
index 9e8d5ae7ef..544e57e526 100644
--- a/include/llvm/ADT/Tree.h
+++ b/include/llvm/ADT/Tree.h
@@ -10,6 +10,8 @@
#include <vector>
+#include <assert.h>
+
template<class ConcreteTreeNode, class Payload>
class Tree {
std::vector<ConcreteTreeNode*> Children; // This nodes children, if any