[llvm] r220690 - [PBQP] Remove a spurious 'typename' keyword. This was causing an error on MSVC.

Lang Hames lhames at gmail.com
Mon Oct 27 10:59:52 PDT 2014


Author: lhames
Date: Mon Oct 27 12:59:51 2014
New Revision: 220690

URL: http://llvm.org/viewvc/llvm-project?rev=220690&view=rev
Log:
[PBQP] Remove a spurious 'typename' keyword. This was causing an error on MSVC.


Modified:
    llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h

Modified: llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h?rev=220690&r1=220689&r2=220690&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h (original)
+++ llvm/trunk/include/llvm/CodeGen/RegAllocPBQP.h Mon Oct 27 12:59:51 2014
@@ -137,7 +137,7 @@ private:
   typedef ValuePool<AllowedRegVector> AllowedRegVecPool;
 public:
 
-  typedef typename AllowedRegVecPool::PoolRef AllowedRegVecRef;
+  typedef AllowedRegVecPool::PoolRef AllowedRegVecRef;
 
   GraphMetadata(MachineFunction &MF,
                 LiveIntervals &LIS,





More information about the llvm-commits mailing list