From: Sanjoy Das Date: Mon, 22 Jun 2015 18:24:50 +0000 (+0000) Subject: Fix MSVC build (again!). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=060e38ab9f38f8531477352a7641576406425a34;p=oota-llvm.git Fix MSVC build (again!). Remove two `typename`s that I should have removed in r240307 but left in by mistake. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240309 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/FaultMaps.h b/include/llvm/CodeGen/FaultMaps.h index 0068d37ccdd..18df4c01816 100644 --- a/include/llvm/CodeGen/FaultMaps.h +++ b/include/llvm/CodeGen/FaultMaps.h @@ -208,11 +208,10 @@ public: }; raw_ostream & -operator<<(raw_ostream &OS, - const typename FaultMapParser::FunctionFaultInfoAccessor &); +operator<<(raw_ostream &OS, const FaultMapParser::FunctionFaultInfoAccessor &); raw_ostream &operator<<(raw_ostream &OS, - const typename FaultMapParser::FunctionInfoAccessor &); + const FaultMapParser::FunctionInfoAccessor &); raw_ostream &operator<<(raw_ostream &OS, const FaultMapParser &);