From 99d562d8fc6684ebaa4d8df458f8d3340b46e4d4 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Sun, 23 Dec 2007 20:34:06 +0000 Subject: [PATCH] Get rid of an unneeded #include. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45337 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineDominators.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/MachineDominators.h b/include/llvm/CodeGen/MachineDominators.h index 44bbaa0fbe6..7d277f07326 100644 --- a/include/llvm/CodeGen/MachineDominators.h +++ b/include/llvm/CodeGen/MachineDominators.h @@ -21,7 +21,6 @@ #include "llvm/CodeGen/MachineInstr.h" #include "llvm/Analysis/Dominators.h" #include "llvm/Analysis/DominatorInternals.h" -#include "llvm/ADT/GraphTraits.h" namespace llvm { @@ -187,6 +186,9 @@ public: /// DominatorTree GraphTraits specialization so the DominatorTree can be /// iterable by generic graph iterators. /// + +template struct GraphTraits; + template <> struct GraphTraits { typedef MachineDomTreeNode NodeType; typedef NodeType::iterator ChildIteratorType; -- 2.34.1