From: Chris Lattner Date: Thu, 17 Oct 2002 01:36:08 +0000 (+0000) Subject: Use the forward declaration for GraphTraits instead of #including X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=375b8e5128de246ca8720a82747a23b83604ebd5;p=oota-llvm.git 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 --- 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