From: Jakob Stoklund Olesen Date: Mon, 25 Oct 2010 17:27:30 +0000 (+0000) Subject: In which I learn how to forward declare template classes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d3b48954141847af12919a5bf4ea8623d19fc1d5;p=oota-llvm.git In which I learn how to forward declare template classes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117272 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/Spiller.h b/lib/CodeGen/Spiller.h index 59bc0ec6ae7..b0a5c412668 100644 --- a/lib/CodeGen/Spiller.h +++ b/lib/CodeGen/Spiller.h @@ -10,14 +10,13 @@ #ifndef LLVM_CODEGEN_SPILLER_H #define LLVM_CODEGEN_SPILLER_H -#include "llvm/ADT/SmallVector.h" - namespace llvm { class LiveInterval; class MachineFunction; class MachineFunctionPass; class SlotIndex; + template class SmallVectorImpl; class VirtRegMap; /// Spiller interface.