From 375b8e5128de246ca8720a82747a23b83604ebd5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 17 Oct 2002 01:36:08 +0000 Subject: [PATCH] Use the forward declaration for GraphTraits instead of #including the header git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4210 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/Dominators.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h index 3304ad330c1..2d0b8efb48e 100644 --- a/include/llvm/Analysis/Dominators.h +++ b/include/llvm/Analysis/Dominators.h @@ -19,10 +19,11 @@ #define LLVM_ANALYSIS_DOMINATORS_H #include "llvm/Pass.h" -#include "Support/GraphTraits.h" #include class Instruction; +template struct GraphTraits; + //===----------------------------------------------------------------------===// // // DominatorBase - Base class that other, more interesting dominator analyses