mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	Add a few missing 'template' keywords
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152525 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
		@@ -1977,7 +1977,7 @@ iterator::overflow(unsigned Level) {
 | 
				
			|||||||
    CurSize[Nodes] = CurSize[NewNode];
 | 
					    CurSize[Nodes] = CurSize[NewNode];
 | 
				
			||||||
    Node[Nodes] = Node[NewNode];
 | 
					    Node[Nodes] = Node[NewNode];
 | 
				
			||||||
    CurSize[NewNode] = 0;
 | 
					    CurSize[NewNode] = 0;
 | 
				
			||||||
    Node[NewNode] = this->map->newNode<NodeT>();
 | 
					    Node[NewNode] = this->map->template newNode<NodeT>();
 | 
				
			||||||
    ++Nodes;
 | 
					    ++Nodes;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -266,7 +266,7 @@ namespace llvm {
 | 
				
			|||||||
        ::llvm::PointerUnionTypeSelector<PT1, T, IsInnerUnion,
 | 
					        ::llvm::PointerUnionTypeSelector<PT1, T, IsInnerUnion,
 | 
				
			||||||
          ::llvm::PointerUnionTypeSelector<PT2, T, IsInnerUnion, IsPT3 >
 | 
					          ::llvm::PointerUnionTypeSelector<PT2, T, IsInnerUnion, IsPT3 >
 | 
				
			||||||
                                                                   >::Return Ty;
 | 
					                                                                   >::Return Ty;
 | 
				
			||||||
      return Ty(Val).is<T>();
 | 
					      return Ty(Val).template is<T>();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    /// get<T>() - Return the value of the specified pointer type. If the
 | 
					    /// get<T>() - Return the value of the specified pointer type. If the
 | 
				
			||||||
@@ -279,7 +279,7 @@ namespace llvm {
 | 
				
			|||||||
        ::llvm::PointerUnionTypeSelector<PT1, T, IsInnerUnion,
 | 
					        ::llvm::PointerUnionTypeSelector<PT1, T, IsInnerUnion,
 | 
				
			||||||
          ::llvm::PointerUnionTypeSelector<PT2, T, IsInnerUnion, IsPT3 >
 | 
					          ::llvm::PointerUnionTypeSelector<PT2, T, IsInnerUnion, IsPT3 >
 | 
				
			||||||
                                                                   >::Return Ty;
 | 
					                                                                   >::Return Ty;
 | 
				
			||||||
      return Ty(Val).get<T>();
 | 
					      return Ty(Val).template get<T>();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    /// dyn_cast<T>() - If the current value is of the specified pointer type,
 | 
					    /// dyn_cast<T>() - If the current value is of the specified pointer type,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user