From: Jakub Staszak Date: Sat, 9 Mar 2013 18:05:34 +0000 (+0000) Subject: Use forward declaration instead of #include. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=209cb5b56bb90f1ceee570efabe9c04121cb0beb;p=oota-llvm.git Use forward declaration instead of #include. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176770 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index a20e0657850..b583b717bd3 100644 --- a/include/llvm/Analysis/LoopInfo.h +++ b/include/llvm/Analysis/LoopInfo.h @@ -36,7 +36,6 @@ #include "llvm/ADT/SmallVector.h" #include "llvm/Analysis/Dominators.h" #include "llvm/Pass.h" -#include "llvm/Support/raw_ostream.h" #include namespace llvm { @@ -52,6 +51,7 @@ class DominatorTree; class LoopInfo; class Loop; class PHINode; +class raw_ostream; template class LoopInfoBase; template class LoopBase;