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:
Douglas Gregor 2012-03-11 02:22:41 +00:00
parent 39bdc5526f
commit 87d8e60505
2 changed files with 3 additions and 3 deletions

View File

@ -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;
} }

View File

@ -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,