[llvm] r240309 - Fix MSVC build (again!).
    Sanjoy Das 
    sanjoy at playingwithpointers.com
       
    Mon Jun 22 11:24:50 PDT 2015
    
    
  
Author: sanjoy
Date: Mon Jun 22 13:24:50 2015
New Revision: 240309
URL: http://llvm.org/viewvc/llvm-project?rev=240309&view=rev
Log:
Fix MSVC build (again!).
Remove two `typename`s that I should have removed in r240307 but left in
by mistake.
Modified:
    llvm/trunk/include/llvm/CodeGen/FaultMaps.h
Modified: llvm/trunk/include/llvm/CodeGen/FaultMaps.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/FaultMaps.h?rev=240309&r1=240308&r2=240309&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/FaultMaps.h (original)
+++ llvm/trunk/include/llvm/CodeGen/FaultMaps.h Mon Jun 22 13:24:50 2015
@@ -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 &);
 
    
    
More information about the llvm-commits
mailing list