From: Duncan P. N. Exon Smith Date: Mon, 28 Apr 2014 20:22:29 +0000 (+0000) Subject: blockfreq: Remove more extra typenames from r207438 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=744d1555fa4860b368746ae687a74ab9de109019;p=oota-llvm.git blockfreq: Remove more extra typenames from r207438 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207440 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/BlockFrequencyInfoImpl.cpp b/lib/Analysis/BlockFrequencyInfoImpl.cpp index a12128318e2..c78ed88ab65 100644 --- a/lib/Analysis/BlockFrequencyInfoImpl.cpp +++ b/lib/Analysis/BlockFrequencyInfoImpl.cpp @@ -885,8 +885,8 @@ namespace llvm { template <> struct GraphTraits { 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;