blockfreq: Remove more extra typenames from r207438

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207440 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan P. N. Exon Smith 2014-04-28 20:22:29 +00:00
parent 57dc9294a4
commit 744d1555fa

View File

@ -885,8 +885,8 @@ namespace llvm {
template <> struct GraphTraits<IrreducibleGraph> {
typedef bfi_detail::IrreducibleGraph GraphT;
typedef const typename GraphT::IrrNode NodeType;
typedef typename GraphT::IrrNode::iterator ChildIteratorType;
typedef const GraphT::IrrNode NodeType;
typedef GraphT::IrrNode::iterator ChildIteratorType;
static const NodeType *getEntryNode(const GraphT &G) {
return G.StartIrr;