mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +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:
parent
39bdc5526f
commit
87d8e60505
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user