diff options
author | Chris Lattner <sabre@nondot.org> | 2008-12-09 02:10:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-12-09 02:10:10 +0000 |
commit | fe1d9e9588ceb3f2913e37161f334301a8aa114c (patch) | |
tree | 94a8f9c4bdcb8540038307ae46a9a9e90a205960 | |
parent | aeac8f9cb4c112c0146be9476f9583b1337195d6 (diff) |
remove two unneeded forward declarations, pointed out by Gabor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60735 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/BasicBlock.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index fd729acd28..ff45800f1e 100644 --- a/include/llvm/BasicBlock.h +++ b/include/llvm/BasicBlock.h @@ -22,8 +22,6 @@ namespace llvm { class TerminatorInst; -template <class Term, class BB> class SuccIterator; // Successor Iterator -template <class Ptr, class USE_iterator> class PredIterator; template<> struct ilist_traits<Instruction> : public SymbolTableListTraits<Instruction, BasicBlock> { |