From 744d1555fa4860b368746ae687a74ab9de109019 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Mon, 28 Apr 2014 20:22:29 +0000 Subject: [PATCH] blockfreq: Remove more extra typenames from r207438 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207440 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/BlockFrequencyInfoImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.34.1